-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
27 lines (25 loc) · 761 Bytes
/
about.html
File metadata and controls
27 lines (25 loc) · 761 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mi About pagina</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<a href="index.html"><li>Home</li></a>
<a href="about.html"><li>About</li></a>
<a href="about2.html"><li>About 2</li></a>
<a href="contact.html"><li>Contact</li></a>
<a href="contact2.html"><li>Contact2</li></a>
<a href="ContactDemo.html"><li>ContactDemo</li></a>
</ul>
</nav>
</header>
<h1>About</h1>
<p>This is My about page</p>
</body>
</html>