-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
107 lines (92 loc) · 3.54 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>index</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-rbsA2VBKQhggwzxH7pPCaAqO46MgnOM80zW1RWuH61DGLwZJEdK2Kadq2F9CUG65" crossorigin="anonymous">
</head>
@font-face {font-family: 'UhBeenamsoyoung';src: url('//font/UhBeenamsoyoung.eot');}
@font-face {font-family: 'UhBeenamsoyoung';src: url('//font/UhBeenamsoyoung.woff') format('woff');}
.container { font-family: "UhBeenamsoyoung", serif;}
textarea {font-family: "UhBeenamsoyoung", serif; }
.container {background-color: #e5c7ca}
.animate-background {
font-family: 'UhBee namsoyoung', 'AppleSDGothicNeo', 'Noto Sans KR', sans-serif;
background: linear-gradient(
to right, #9ec5fe,
#b67ed6, #e685b5);
background-size: 400% 400%;
width: 100%;
/*position: fixed;*/
height: 100vh;
display: flex;
flex-wrap: wrap;
animation: animate-background 10s infinite ease-in-out;
}
@keyframes animate-background{
0%{
background-position: 0 50%;
}
50%{
background-position: 100% 50%;
}
100%{
background-position: 0 50%;
}
}
.classname{
font-size: 50px;
margin: 10%;
display: flex;
justify-content: center;
}
.index_con{
margin: 20px;
font-size: 20px;
}
@media screen and (max-width: 480px) {
.classname {
font-size: 30px;
width: 95%
display: flex;
justify-content: center;
}
.animate-background{
flex-direction: column;
}
.index_con{
font-size: 17px;
}
}
</style>
</head>
<body>
<div class = 'container-fluid animate-background'>
<div class = 'classname'>
2023-2 web programming class
</div>
<div>
<p class="index_con">
<a href="./hw/register.html" class = 'text-decoration-none'>회원가입</a>
</p>
<p class = 'index_con'><a href="./hw/login.html" class = 'text-decoration-none'>로그인</a></p>
<p class = 'index_con'>
<a href = './practice/practice2.html' class = 'text-decoration-none'>janmangloopy</a>
</p>
<div class = 'index_con'>
<a href = './hw/hw03.html' class = 'text-decoration-none'>hw03_bs5</a>
</div>
<div class = 'index_con'>
<a href = './hw/hw04.html' class = 'btn'>과제04(new!)</a>
</div>
</div>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-kenU1KFdBIe4zVF0s0G1M5b4hcpxyD9F7jL+jjXkk+Q2h455rYXK/7HAuoJl+0I4" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/core@2.11.6/dist/umd/popper.min.js" integrity="sha384-oBqDVmMz9ATKxIep9tiCxS/Z9fNfEXiDAYTujMAeBAsjFuCZSmKbSSUnQlmh/jp3" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.2.3/dist/js/bootstrap.min.js" integrity="sha384-cuYeSxntonz0PPNlHhBs68uyIAVpIIOZZ5JqeqvYYIcEL727kskC66kF92t6Xl2V" crossorigin="anonymous"></script>
</div>
</body>
</html>