-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
35 lines (30 loc) · 896 Bytes
/
about.html
File metadata and controls
35 lines (30 loc) · 896 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
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>웹프로그래밍 데모</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar">
<div class="container">
<div class="logo">WebDemo</div>
<ul class="nav">
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
<li><a href="list.html">list</a></li>
</ul>
</div>
</nav>
<section class="main">
<div class="container">
<h1>소개 About</h1>
<p>웹프로그래밍을 공부하고 있습니다.</p>
<p>이것은 첫 번재 프로젝트입니다.</p>
</div>
</section>
<script src="main.js"></script>
</body>
</html>