-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeed.html
49 lines (43 loc) · 1.81 KB
/
feed.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
<!DOCTYPE html>
<html>
<head>
<meta charset = "UTF-8">
<title>Instagram</title>
<link href = "background.css" rel = "stylesheet" type = "text/css" />
<link href="feed.css" rel = "stylesheet" type = "text/css" />
<link rel = "icon" href = "img/icon.png" >
</head>
<body>
<div class = "main">
<section class = "cardViewSection">
<div class = "cardView" >
<header>
<div class = "userNickName">LikeLionSSU</div>
</header>
<div class = "cardImage">
<img src = "img/ssu_likelion_logo.png" alt = "sample">
</div>
<div class = "cardInfo">
<div class = "infoLeft">
<img class = "feedImg" src = "img/liked.png" alt = "좋아용" />
<img class = "feedImg" src = "img/comment.png" alt = "코멘트" />
<img class = "feedImg" src = "img/upload.png" alt = "업로드" />
</div>
<div class = "infoRight">
<img class = "feedImg" src = "img/edit.png" alt = "수정" />
<img class = "feedImg" src = "img/delete.png" alt = "삭제" />
</div>
</div>
<div class = "comment">
comment1<br>
comment2<br>
</div>
<div class = "comment_form">
<form action = "">
<input type="text" placeholder="댓글 입력..">
</form>
</div>
</section>
</div>
</body>
</html>