-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmyAssignment.html
75 lines (75 loc) · 2.29 KB
/
myAssignment.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html>
<head>
<title>SNU building database</title>
<link href="myAssignment.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class = "mydiv1">
<h1>SNU building</h1>
</div>
<div class = "mydiv2">
<ul class = "mylist">
<li>It's a <q>prototype</q> of <strong>2019-1 web programming introduction class</strong> personal project.</li>
<li>This site will provide various information about the <strong>SNU buildings.</strong></li>
<li>This site will continue <mark style="color:red">to be updated.</mark></li>
</ul>
</div>
<div>
<table>
<thead>
<tr>
<th>Number</th>
<th>Name(in Korean)</th>
<th>Name(in English)</th>
<th>Image</th>
<th>Q&A</th>
</tr>
</thead>
<tbody>
<tr>
<td>1</td>
<td>인문관1</td>
<td>College of Humanities 1</td>
<td><a href = "http://map.snu.ac.kr/web/facility_detail.action?lat_val=37.46027&lon_val=126.95234&convinType=Y&inst_seq=1">
<img src = "http://map.snu.ac.kr/api/upload/default/F_BUILD_0000001.jpg" width = "40%" height = auto>
</a></td>
<td><a href = "1.html">view more..</a></td>
</tr>
<tr>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
</tr>
<tr>
<td>63</td>
<td>학생회관</td>
<td>Student Center</td>
<td><a href = "http://map.snu.ac.kr/web/facility_detail.action?lat_val=37.45932&lon_val=126.95058&convinType=Y&inst_seq=80">
<img src = "http://map.snu.ac.kr/api/upload/default/F_BUILD_0000078.jpg" width = "40%" height = auto>
</a></td>
<td><a href = "https://naver.com">view more..</a></td>
</tr>
<tr>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
<td>...</td>
</tr>
<tr>
<td>946</td>
<td>BK국제관</td>
<td>BK International House</td>
<td><a href = "http://map.snu.ac.kr/web/facility_detail.action?lat_val=37.46531&lon_val=126.95841&convinType=Y&inst_seq=229">
<img src = "http://map.snu.ac.kr/api/upload/default/F_BUILD_0000220.jpg" width = "40%" height = auto>
</a></td>
<td>view more..</td>
</tr>
</tbody>
</table>
</div>
</body>
</html>