-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
31 lines (30 loc) · 895 Bytes
/
home.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Lapmania</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="wrapper">
<nav class="navbar">
<ul>
<li><a class="active" href="#">Home</a></li>
<li><a href="miniabout.html">About</a></li>
<li><a href="minicontact.html">Contact</a></li>
<li><a href="miniprofile.html">Profile</a></li>
<li><a href="miniprojectlogin.html">Logout</a></li>
</ul>
</nav>
<div class="center">
<h1>Welcome To Lapmania</h1>
<h2>Let's build your dream laptop</h2>
<div class="buttons">
<a href="miniinside.html"><button type="button">Calculate</button></a>
<a href="minipc.html"><button type="button" class="btn2">Builders</button></a>
</div>
</div>
</div>
</div>
</body>
</html>