-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
30 lines (27 loc) · 937 Bytes
/
blog.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Truckee Robotics Blog</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" type="image/x-icon" href="images/favicon.ico">
</head>
<body>
<canvas id="snowCanvas"></canvas>
<header class="blog-header">
<h1>Blog</h1>
<button id="homeButton" class="back-button">Back</button>
</header>
<section class="blog-container">
<div class="blog-card">
<h2>FTC Centerstage Autonomous</h2>
<p>A summary of the autonomous module for the 2023 FTC season.</p>
<button class="read-more" id="2023auto">Read More</button>
</div>
</section>
<script src="script.js"></script>
<script src="blog.js"></script>
</body>
</html>