-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase.html
33 lines (29 loc) · 1.02 KB
/
base.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Instagram</title>
<link href = "base.css" rel= "stylesheet" type = "text/css" />
<link rel = "icon" href = "img/icon.png">
</head>
<body>
<header>
<div class = "left_box">
<div class = "favicon_frame">
<img class = "faviconFrame" src = "img/line_favicon.png" alt = "인스타 로고" />
</div>
<div class = "line">
<img class = "logo" src = "img/logo_text.png" alt = "인스타 글씨" />
</div>
</div>
<div class = "right_box">
<div class = "heart_box" >
<img class = "heart" src = "img/new.png" alt = "글 작성" />
</div>
<div class = "myInfo_box">
<img class = "myInfo" src = "img/myInfo.png" alt = "내 프로필" />
</div>
</div>
</header>
</body>
</html>