Lab 2
2.1
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<title>My CV</title>
</head>
<body>
<h1>Contact Information</h1>
<h2>Inthat Sappipat</h2>
<h3>SE Students</h3>
<h4>My short Desciptions</h4>
<p>Inthat.sapp@gmail.com</p>
<p>0844282554</p>
<p>Khon Kaen</p>
<p>
<a href="http://127.0.0.1:5500/3.1.html">Go to Activity page</a>
</p>
</body>
</html>
2.2
<!DOCTYPE html>
<html>
<head>
<style>
table, th, td {
border: 1px solid #000;
}
</style>
</head>
<body>
<table border = "1">
<caption><strong>Educational Record</strong></caption>
<thead>
<tr>
<th>Education Level</th>
<th>Graduation Year</th>
<th>Field of study</th>
<th>School name</th>
<th>Yeah</th>
</tr>
</thead>
<tbody>
<tr>
<td>Bachelor's Degree</td>
<td>2027</td>
<td>Software Engineering</td>
<td>KMITL</td>
<td>Krung Thep Maha Nakhon</td>
</tr>
<tr>
<td>High School</td>
<td>2022</td>
<td>Science Mathematics</td>
<td>Satit KKU</td>
<td>Khon Kaen</td>
</tr>
<tr>
<td>Bachelor's Degree</td>
<td>2019</td>
<td>Science Mathematics</td>
<td>Satit KKU</td>
<td>Khon Kaen</td>
</tr>
</tbody>
</table>
</body>
</html>
2.3
<!DOCTYPE html>
<html>
<head>
<meta charset = "utf-8">
<title>My Activity</title>
</head>
<body>
<img src = "https://upload.wikimedia.org/wikipedia/commons/9/95/Khon_Kaen_City_from_Above.jpg" width = "700" height="500" alt="Khon Kaen">
<h1>Here are the link to my favorite site: </h1>
<p>Click a name to visit its site.</p>
<p>
<a href="https://www.python.org/">
<img src="https://www.pngwing.com/en/free-png-zqgct" width="200" height="200" alt="Python">
</a>
</p>
<p>
<a href="https://www.djangoproject.com/">
<img src="https://www.emizentech.com/blog/django-stack.html" width="200" height="200" alt="Django">
</a>
</p>
<p>
<a href="https://www.google.co.th/?hl=th">
<img src="https://upload.wikimedia.org/wikipedia/commons/5/51/Google.png" width="200" height="200" alt="Google">
</a>
</p>
<p>
<a href="https://www.w3schools.com/html/">
<img src="https://upload.wikimedia.org/wikipedia/commons/6/61/HTML5_logo_and_wordmark.svg" width="200" height="200" alt="HTML">
</a>
</p>
<p>
<a href="https://www.w3schools.com/css/">
<img src="https://upload.wikimedia.org/wikipedia/commons/3/3d/CSS.3.svg" width="200" height="200" alt="CSS">
</a>
</p>
<p>
<a href="http://127.0.0.1:5500/1.html">Go to CV page</a>
</p>
<p>
<a href="#top">Back to Top</a>
</p>
</body>
</html>