-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
27 lines (27 loc) · 734 Bytes
/
about.html
File metadata and controls
27 lines (27 loc) · 734 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>
<header>
<title>
About
</title>
<link rel="stylesheet" href="css/web_crawler.css">
</header>
<body>
<ul class="nav">
<li><a href="index.html">Web-Crawler</a></li>
<li><a href="about.html" class="active">About</a></li>
<li><a href="team.html">Team</a></li>
<li><a href="progress.html">Progress</a></li>
<li><a href="contact.html">Contact</a></li>
</ul><br>
<div class="heading">
<p>
<h2>W.E.B-Crawler</h2>
</p>
</div>
<div class="footer">
<p>Footer</p>
<br><br><br>
</div>
</body>
</html>