-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 992 Bytes
/
index.html
File metadata and controls
33 lines (33 loc) · 992 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Crane Compare</title>
</head>
<body>
<header>
<h1>Crane Compare</h1>
<nav>
<ul>
<li><a href="#home">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</nav>
</header>
<section class="hero">
<div class="hero-text">
<h2>Welcome to the Crane Comparison Tool</h2>
<p>Find the best crane for your needs with our comprehensive comparison tool.</p>
<a href="compare.html" class="btn">Start ⇀</a>
</div>
</section>
<footer>
<div class="footer-content">
<p>In progress...</p>
</div>
</footer>
</body>
</html>