-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsite1.html
42 lines (40 loc) · 1.44 KB
/
site1.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
38
39
40
41
42
<!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>Basic Website</title>
<link rel="stylesheet" href="style1.css">
</head>
<body>
<!-- header for website -->
<header class="header">
<h2>This is the header</h2>
</header>
<!-- navigation for website-->
<div class="nav-menu">
<a href="#about">About Us</a>
<a href="#contact">Contact Us</a>
<a href="#blog">Blog</a>
</div><br>
<!-- content section for website-->
<div class="row">
<div class="colA" id="about">
<h2>About Us</h2>
<p>We are a startup company. We repair and sell cellphones and tablets. Our inventory is supplied every week. If we do not have what you are looking for, we will get it for you within two weeks.</p>
</div>
<div class="colB" id="contact">
<h2>Contact Us</h2>
<h3>You can find us here:</h3>
<p>478 Here Street</p>
<p>(100) 222-3344</p>
<p>cellphonerepair@cellphonerepair.com</p>
</div>
<div class="colC" id="blog">
<h2>We have a Blog!</h2>
<p>Check out our blog. You can find product reviews, get the latest information on the newest phones, and how to update and upgrade.</p>
</div>
</div>
</body>
</html>