forked from Sookmyung-Software-Hackathon/team15
-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
103 lines (97 loc) · 3.11 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
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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
</head>
<body style="text-align:center;">
<style>
h1{
font-size: 60px;
color: black;
text-transform: uppercase;
font-weight: 700;
text-align: center;
margin-bottom: 60px;
}
body {
padding:1.5em;
background: black;
}
table{
border-collapse: collapse; /*이중선 제거*/
width: 100%;
table-layout: fixed;
}
th{
padding: 200px 50px;
text-align: center;
font-weight: 700;
font-size: 26px;
color: black;
text-transform: uppercase;
border: solid 1px rgba(255,255,255,255);
}
td{
padding: 16px;
text-align: center;
vertical-align:middle;
font-weight: 300;
font-size: 15px;
color: black;
border: solid 1px rgba(255,255,255,255);
}
tr{
border: solid 1px rgba(255,255,255,255);
}
body{
font-family: 'Roboto', sans-serif;
background-image: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
}
section{
margin: 30px;
}
</style>
<section>
<h1>1070 ; 세대 간의 화합</h1>
<div class="tbl-header">
<table align="center" cellpadding="0" cellspacing="0" border="0">
<th colspan='2' style="background-color:MistyRose;"><button type="button" onclick="location.href=' '">퀴즈</button></th>
<tr style="background-color:MistyRose;">
<td><button type="button" onclick="location.href=' '">게시판</button></td>
<td><button type="button" onclick="location.href='register.html'">수강신청</button></td>
</tr>
<tr style="background-color:MistyRose;">
<td><button type="button" onclick="location.href='hobby.html'">취미생활</button></td>
<td><button type="button" onclick="location.href=' '">밥약</button></td>
</tr>
</table>
</div>
</section>
<button type="button" onclick="location.href='login.html'">로그인</button>
<button type="button" onclick="location.href='person.html'">회원가입</button>
<h1>
<style>
button{
width: 110px;
height: 40px;
color: #fff;
background: #004fff;
font-size:16px;
border:none;
border-radius:20px;
box-shadow: 0 4px 16px rgba(0,79,255,0.3);
transition:0.3s;
}
button:focus{
outline:0;
}
button:hover{
background:rgba(0,79,255,0.9);
cursor:pointer;
box-shadow: 0.2px 4px rgba(0,79,255,0.6);
}
</style>
</h1>
</body>
</html>