-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
executable file
·60 lines (58 loc) · 1.11 KB
/
test.html
File metadata and controls
executable file
·60 lines (58 loc) · 1.11 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
<style>
.con{
width: 600px;
height: 920px;
background-color: #ffffff;
border: 1px solid #DBDBDB;
border-radius: 3px;
}
.title{
display: flex;
margin: 10px;
}
.title p{
margin: 5px 15px;
font-size: 20px;
}
.img{
width: 50px;
height: 50px;
border-radius: 50%;
}
.con_img{
width: 600px;
}
.content{
padding: 10px;
}
.content input{
width: 100%;
height: 45px;
border: none;
border-top: 1px solid #DBDBDB;
color: #999999;
font-size: 16px;
}
.content input:focus{
outline: none;
}
</style>
</head>
<body>
<div class="con">
<div class="title">
<img src="images/hong.png" alt="" class="img">
<p>이건 제목이야.</p>
</div>
<img src="images/picture.png" alt="" class="con_img">
<div class="content">
<p><a href="">yeonju</a>#해달 #html #css</p>
<input type="text" name="" id="" value="댓글달기">
</div>
</div>
</body>
</html>