-
Notifications
You must be signed in to change notification settings - Fork 0
/
profile.html
49 lines (48 loc) · 1.3 KB
/
profile.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">
<link href="img/icon.png" rel="insta icon" type="image/x-icon">
<title>Instagram</title>
</head>
<body>
<div class = "profileImage">
</div>
<button>
<img src="img/ssu_likelion_logo_150x150.png">
</button>
<h1 class="profileName">LikeLionSSU</h1>
<div>
<button edit="profileEdit">프로필 편집</button>
</div>
<ul>
<li>2020 게시물</li>
<li>0308 팔로워</li>
<li>2021 팔로링</li>
</ul>
<p>🎈Hello World🎈</p>
</body>
<main>
<div class="profileFeed">
<img src="img/lionface.png" alt="피드게시물">
<ul aria-hidden="true">
<li>Likes: 777</li>
<li>Comments: 777</li>
</ul>
</div>
<div class="profileFeed">
<img src="img/lionface.png" alt="피드게시물">
<ul aria-hidden="true">
<li>Likes: 888</li>
<li>Comments: 888</li>
</ul>
</div>
<div class="profileFeed">
<img src="img/lionface.png" alt="피드게시물">
<ul aria-hidden="true">
<li>Likes: 999</li>
<li>Comments: 999</li>
</ul>
</div>
</main>
</html>