blob: a7d2cff9230f38eb5a82af94473ae1cefba5769b (
plain)
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-US">
<head>
<title>Website About</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=devide-width,initial-scale=1">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header>
<nav>
<ul>
<li>
<a href="../index.html">Home</a>
</li>
<li>
<a href="about.html">About</a>
</li>
</ul>
</nav>
<h1>About this Website</h1>
<p>
This website will contain all projects related to The
Odin Project online course.
</p>
</header>
<main>
</main>
</body>
<script src=""></script>
</html>
|