form과 css를 적용하여 만들었다
저번보다 훨씬 이쁘다...하하
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
|
<html lang="ko">
<head>
<meta charset="utf-8">
<title>HoLoLo의 자기소개 페이지</title>
</head>
<body>
<div style="text-align: center;">
<h1 id="main_font">My Hogwarts</h1>
<table style="text-align: center">
<tr>
<td><img src="https://i.pinimg.com/originals/0a/41/0e/0a410e3a4f03610eed0dbbbcd2f0a3db.png" id="im_size"></td>
<td>
<div id="login">
<form id="form_style">
<label for="stid">Student ID : </label>
<input id="stid" name="stid" type="text" alt class="input_style"/>
<br><br>
<label for="stpw">Student PW : </label>
<input id="stpw" name="stpw" type="password" alt class="input_style"/>
<br><br>
<label for="dorm">Your Dorm : </label>
<input type="text" list="dorms" id="dorm" name="dorm" class="input_style"/>
<datalist id="dorms">
<option value="Gryffindor"></option>
<option value="Slytherin"></option>
<option value="Ravenclaw"></option>
<option value="Hufflepuff"></option>
</datalist>
</form>
</div>
</td>
</tr>
<tr>
<td colspan="2">
<hr>
<p style="font-size: 20px; color: #bcbcbc; font-family :Georgia">
This is a Homepage for students who are in "Hogwarts" and will be great magicians.<br>
So if you're not a Hogwarts's student and you're trying to hack this page,<br>
You will be kissed by Dementors.<br>
Go back now, muggle!</p>
</td>
</tr>
</table>
</div>
</body>
</html>
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
http://colorscripter.com/info#e" target="_blank" style="text-decoration:none;color:white">cs |
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
|
body{
background: #61380B;
}
#main_font{
color: white;
font-family: Georgia;
font-size: 100px;
}
#im_size{
width:600px;
height: 600px;
}
table{
margin-left: auto;
margin-right: auto;
}
td{
padding: 15px;
text-align: center;
}
#login{
border: 10px dashed #bcbcbc;
}
#form_style{
padding : 15px;
margin : 15px;
font-family: Georgia;
color : #bcbcbc;
font-size: 50px;
}
.input_style{
font-size: 30px;
width: 200px;
height:50px;
font-family: Georgia;
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
결과 화면
하하 뿌듯하군
확실히 css쓰니까 이쁘네
'Study Group > 2019 Web(Tutoring Project)' 카테고리의 다른 글
자기소개 페이지 꾸미기 (1) | 2019.09.24 |
---|---|
html로 간단한 웹 페이지 만들기 (0) | 2019.09.10 |