-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (42 loc) · 1.36 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Concordia Enggames</title>
<link rel="stylesheet" href="style.css" />
<link rel="icon" href="Images/conco_logo.png" type="image/png" />
</head>
<body>
<header>
<div class="logo-container">
<a href="index.html">
<img src="Images/conco_logo_edit.png" alt="Your Logo" class="logo" />
</a>
</div>
<nav>
<ul>
<li><a href="about.html">ABOUT</a></li>
<li><a href="competitions.html">COMPETITIONS</a></li>
<li><a href="projects.html">PROJECTS</a></li>
<li><a href="volunteering.html">VOLUNTEERING</a></li>
<li><a href="sponsorship.html">SPONSORSHIP</a></li>
<li><a href="team.html">TEAM</a></li>
<li><a href="contact.html">CONTACT</a></li>
</ul>
</nav>
</header>
<main>
<body class="home">
<section class="big-picture">
<div class="big-image-container">
<img src="Images/delegation-pic-2024.jpg" alt="Big Picture" />
</div>
</section>
</body>
</main>
<footer>
<p>© 2024 Concordia Engineering Games. All rights reserved.</p>
</footer>
</body>
</html>