-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
25 lines (25 loc) · 934 Bytes
/
about.html
File metadata and controls
25 lines (25 loc) · 934 Bytes
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
<!DOCTYPE html>
<html>
<head>
<link href="https://fonts.googleapis.com/css?family=Calistoga&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans+KR&display=swap" rel="stylesheet">
<link rel="stylesheet" href="basic_styles.css">
</head>
<body>
<div class="nav-container">
<div class="logo">Myeong.</div>
<div class="link-container">
<a href="./index.html">Home</a>
<a href="./about.html">About</a>
</div>
<div class="nav-right"></div>
</div>
<div class="body-flex-container">
<div class="body-flex-left"></div>
<div class="body-flex-center">
<!--Content-->
</div>
<div class="body-flex-right"></div>
</div>
</body>
</html>