-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
37 lines (34 loc) · 1.2 KB
/
contact.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Class 13</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<div class="logo-menu">
<div class="logo">
<img src="https://i.ibb.co/DrHtkPx/main-logo.png" alt="logo">
</div>
<div class="menu-bar">
<ul>
<li> <a href="home.html">Home</a> </li>
<li> <a href="about.html">About Us</a> </li>
<li> <a href="service.html">Service</a> </li>
<li> <a href="price.html">Price list</a> </li>
<li> <a href="blog.html">Blog</a> </li>
<li> <a href="contact.html">Contact Us</a> </li>
</ul>
</div>
</div>
</nav>
</header>
<div class="contact-image">
<img src="https://cdn.pixabay.com/photo/2017/12/02/14/38/contact-us-2993000_960_720.jpg" alt="">
</div>
</body>
</html>