-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
35 lines (31 loc) · 903 Bytes
/
contact.html
File metadata and controls
35 lines (31 loc) · 903 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>
</ul>
</div>
</nav>
<section class="main">
<div class="container">
<h1>Contact</h1>
<p>중부대학교 정보보호학과 최연웅</p>
<p>전화: 010-1234-5678</p>
<p>이메일: test@test.com</p>
<img src="image/me.png" alt="user"height="300"/>
</div>
</section>
<script src="main.js"></script>
</body>
</html>