-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhackathonTest.html
More file actions
40 lines (35 loc) · 1.13 KB
/
Copy pathhackathonTest.html
File metadata and controls
40 lines (35 loc) · 1.13 KB
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
<!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="styles.css">
<title>Home Page</title>
</head>
<body>
<header>
<div id="homeButtonContainer">
<a href="hackathonTest.html" id="homeButton">
<img src="logo.jpeg" alt="Logo Icon"></a>
</a>
</div>
<h1>Welcome to Our Website</h1>
<div id="profileContainer">
<a href="profile.html" id="profileButton"><img src="profile-icon.jpg" alt="Profile Icon"></a>
</div>
</header>
<section>
<h2>About Us</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ut perspiciatis unde omnis iste natus error...</p>
</section>
<section>
<h2>Services</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed ut perspiciatis unde omnis iste natus error...</p>
</section>
<section>
<h2>Contact Us</h2>
<p>Email: info@example.com</p>
<p>Phone: +1 (123) 456-7890</p>
</section>
</body>
</html>