-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
36 lines (35 loc) · 951 Bytes
/
Copy pathabout.html
File metadata and controls
36 lines (35 loc) · 951 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
36
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About us</title>
<link rel="stylesheet" href="style.css"/>
<style>
h1 {
font-color: rgb(233, 239, 241);
font-size: 40px;
}
</style>
</head>
<body>
<h1>About us</h1>
<hr/>
<div>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="contact.html">Contact</a>
</div>
<hr/>
<div class="headings">
<p>
ElectroMart is one of the best electronics shops providing
smartphones, laptops, headphones, smart TVs and many more
gadgets at affordable prices.
<br><br>
Our mission is to deliver quality products with the latest technology
and best customer service.
</p>
</div>
</body>
</html>