-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjoin.html
More file actions
115 lines (101 loc) ยท 2.48 KB
/
Copy pathjoin.html
File metadata and controls
115 lines (101 loc) ยท 2.48 KB
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
108
109
110
111
112
113
114
115
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>main</title>
</head>
<link href="mycss.css" rel="stylesheet" type="text/css" />
<style>
/* .bg {
width: 700px;
margin: 0 auto;
height: 100vh;
min-height: 700px;
background-color: #f2f2f2;
display: flex;
} */
.con {
display: grid;
align-items: center;
margin: auto;
width: 600px;
justify-content: center;
}
.logo {
/* margin: 20px auto; */
text-align: center;
font-size: 60px;
font-weight: 900;
margin-bottom: 30px;
}
.jtitle {
width: 80px;
font-size: 20px;
margin-right: 10px;
}
.jinput {
width: 330px;
height: 40px;
border: none;
border-radius: 10px;
/* background-coslor: #f2f2f2; */
}
.fjoin {
margin-bottom: 10px;
}
input:focus {
outline: none;
box-shadow: inset 0px 0px 7px #d8f39e;
}
button:hover {
/* transform: translateY(-5px); */
transform: scale(1.02);
cursor: pointer;
}
a {
text-decoration: none;
color: inherit;
}
a:visited {
/* text-decoration-color: none; ๋ฐฉ๋ฌธํ ๋งํฌ */
color: black;
text-decoration: none;
}
.bnt {
margin: 0 auto;
width: 410px;
height: 50px;
background-color: # ;
border-radius: 10px;
border: none;
font-size: 18px;
font-weight: bolder;
letter-spacing: 5px;
}
</style>
<div class="bg">
<div class="con">
<div class="logo">
ํ์๊ฐ์
</div>
<div style="text-align: center;">
<div class="fjoin">
<span class="jtitle">์์ด๋</span>
<input class="jinput" type="text" id="id" />
</div>
<div class="fjoin">
<span class="jtitle">๋น๋ฐ๋ฒํธ</span>
<input class="jinput" type="password" id="pw" />
</div>
<div class="fjoin">
<span class="jtitle">๋๋ค์</span>
<input class="jinput" type="text" id="nickName" />
</div>
<button class="bnt"><a href="/join.html">๋๋ฅผ ์ฐพ์ผ๋ฌ ๋ ๋๊ธฐ</a></button>
</div>
</div>
</div>
<body>
</body>
</html>