-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
46 lines (46 loc) · 1.92 KB
/
index.html
File metadata and controls
46 lines (46 loc) · 1.92 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
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">
<link rel="stylesheet" href="styles.css">
<title>Rowville Roobots - FRC Team 9189</title>
</head>
<body>
<header>
<nav>
<a href="#about">About</a>
<a href="#team">Team</a>
<a href="#contact">Contact</a>
<a href="#links">Links</a>
</nav>
<img src="logo.png" alt="Rowville Roobots Logo">
</header>
<main>
<section id="about">
<h1>About Us</h1>
<p>We are Team 9189, the Rowville Roobots, the FRC team of Rowville Secondary College in Victoria. We are passionate about robotics and strive to excel in the FIRST Robotics Competition.</p>
</section>
<section id="team">
<h1>Our Team</h1>
<p>Our team consists of dedicated students and mentors from Rowville Secondary College. We work together to design, build, and program our robots, and to develop teamwork and leadership skills.</p>
</section>
<section id="contact">
<h1>Contact Us</h1>
<p>If you have any questions or would like more information about our team, please feel free to get in touch with us:</p>
<p>Email: dev@rowvilleroobots.com</p>
<p>Address: Paratea Dr, Rowville VIC 3178</p>
</section>
<section id="links">
<h1>Links</h1>
<p>GitHub: <a href="https://github.com/Rowville-Roobots">Rowville-Roobots</a></p>
<p>Email To: <a href="mailto:dev@rowvilleroobots.com">dev@rowvilleroobots.com</a></p>
<p>Competition Codebase: <a href="https://github.com/Rowville-Roobots/RowvilleRoobotsCode">RowvilleRoobotsCode</a></p>
</section>
</main>
<footer>
<p>Rowville Roobots - FRC Team 9189</p>
</footer>
<script src="scripts.js"></script>
</body>
</html>