-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
68 lines (66 loc) · 1.54 KB
/
main.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
<!DOCTYPE html>
<html>
<head>
<title>Images</title>
<style type="text/css">
body {
font-family: Georgia, "Times New Roman", serif;
text-align: center;}
.wrapper {
width: 720px;
margin: 0px auto;}
.header {
margin: 40px 0px 20px 0px;}
.entry {
width: 220px;
float: left;
margin: 10px;
height: 198px;
background-repeat: no-repeat;
background-position: bottom;}
figure {
display: block;
width: 202px;
height: 170px;
margin: 0;
padding: 9px;
text-align: left;}
figure img {
width: 200px;
height: 150px;
border: 1px solid #d6d6d6;}
figcaption {
background-repeat: no-repeat;}
</style>
</head>
<body>
<div class="wrapper">
<div class="header">
<font size=5>선아의 가수 PICK!</font>
</div>
<center><table>
<tr><td>
<div class="entry">
<figure><img src="img/jan.jpg" alt="잔나비" />
<center><figcaption>잔나비</figcaption></center>
</figure>
</div></td><td>
<div class="entry">
<figure><img src="img/dong.jpg" alt="동방신기" />
<center><figcaption>동방신기</figcaption></center>
</figure>
</div></td></tr><td>
<div class="entry">
<figure><img src="img/kim.jpg" alt="김준수" />
<center><figcaption>김준수</figcaption></center>
</figure>
</div></td><td>
<div class="entry">
<figure><img src="img/yang.jpg" alt="양다일" />
<center><figcaption>양다일</figcaption></center>
</figure></td></tr>
</table></center>
</div>
</div>
</body>
</html>