-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHome.html
46 lines (43 loc) · 1.52 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>NAtIVe25FOuR - Home</title>
<link rel="stylesheet" href="Home.css">
</head>
<body>
<h4>NAtIVe 254</h4>
<div class="initials" onclick="toggleDropdown()"></div>
<div class="dropdown" id="dropdown">
<div class="dropdown-item" onclick="navigateTo('account.html')">Account</div>
<div class="dropdown-item" onclick="navigateTo('settings.html')">Settings</div>
<div class="dropdown-item" id="logout-button">Log Out</div>
</div>
<br>
<div class="paragraph">
<p>
<h1>Welcome to the NAtIVE 254 website!.</h1>
</p>
</div>
<div class="insert">
<div class="logo"><img src="img/wide%20logo.png" alt="Wide Logo">
</div>
</div>
<br>
<div class="container">
<div class="box" id="box1"><img src="img\ABOUT US.png"></div>
<div class="box" id="box2"><img src="img\services.png"></div>
<div class="box" id="box3"><img src="img\contact us.png"></div>
</div>
<div class="buttons">
<button onclick="navigateTo('About.html')">About</button>
<button onclick="navigateTo('Services.html')">Services</button>
<button onclick="navigateTo('Contact.html')">Contact Us</button>
</div>
<footer class="footer">
<p>© Native254 2024</p>
</footer>
<script src="Home.js"></script>
</body>
</html>