-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (40 loc) · 1.38 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>Home</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="wrapper">
<header>
<!-- Centered title -->
<h1>American Society of Agricultural and Biological Engineers</h1>
<!-- Centered subtitle -->
<subheader>
<h2>Florida Student Branch</h2>
</subheader>
<!-- Navigation menu -->
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="jobs.html">Job Listings</a></li>
<li><a href="about.html">About Us</a></li>
</ul>
</nav>
</header>
<section>
<!-- Home page content -->
<h3>Welcome to ASABE UF!</h3>
<p>We are the Florida Student Branch of the American Society of Agricultural and Biological Engineers. Stay tuned for updates and upcoming events!</p>
<p>Upcoming GBM Schedule: Oct 23, Nov 13, Jan 22, Feb 12, Mar 5, Mar 26, Apr 16.</p>
<p>Event reminders:</p>
</section>
<!-- Sticky footer -->
<footer>
<p>©2024 UF ASABE. All rights reserved.</p>
</footer>
</div>
</body>
</html>