-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
75 lines (69 loc) · 1.98 KB
/
index.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>메인페이지</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
html,
body {
margin: 0;
padding: 0;
width: 100%;
height: 100%;
}
body {
background: url(800.FED211_PF/bg.jpg) no-repeat center/cover;
overflow: hidden;
}
.wrap{
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
white-space: nowrap;
}
.tit {
margin-top: 5%;
color: #fff;
font-size: max(5vw,30px);
line-height: max(7vw,35px);
text-shadow: 1px 0 #000, -1px 0 #000,
0 1px #000, 0 -1px #000;
text-align: center;
}
.link {
font-size: max(3vw,25px);
line-height: max(4vw,30px);
text-shadow: 1px 0 #000, -1px 0 #000,
0 1px #000, 0 -1px #000;
text-align: center;
}
.link a{
color: yellow;
text-decoration: none;
}
.link a:hover{
color: red;
text-decoration: overline;
}
</style>
</head>
<body>
<div class="wrap">
<h1 class="tit">최종 포트폴리오</h1>
<h2 class="link">
<a href="800.FED211_PF/main/index.html">프론트엔드 웹개발 21-1회차</a>
</h2>
<h2 class="link">
<a href="802.KITA-FED212_PF/main/index.html">프론트엔드 웹개발 21-2회차</a>
</h2>
<h2 class="link">
<a href="803.GITA-FED213_PF/main/index.html">프론트엔드 웹개발 21-3회차</a>
</h2>
<h2 class="link">
<a href="804.GITA-FED221_PF/main/index.html">프론트엔드 웹개발 22-1회차</a>
</h2>
</div>
</body>
</html>