-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (69 loc) · 2.85 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>DV Programming Club</title>
<meta name = "viewport" content = "width=device-width, initial-scale=1.0">
<link href="https://fonts.googleapis.com/css?family=Roboto+Condensed|Squada+One|Oswald&display=swap" rel="stylesheet">
<link type="text/css" rel="stylesheet" href="reset-style.css">
<link type="text/css" rel="stylesheet" href="style.css">
<script type = "text/javascript" src="script.js"></script>
</head>
<body>
<header>
<a href = "index.html"><h1 class = "pageTitle">Desert Vista Programming Club</h1></a>
<nav class = "toolbar">
<ul>
<li><a href = "game.html">Game/Web Design</a></li>
<li><a href = "training.html">Code Exercises</a></li>
<li><a href = "events.html">Events Info</a></li>
</ul>
</nav>
</header>
<br>
<main>
<section class = "index-banner">
<div class = "vertical-center">
<h2>Are You Interested In Designing Games, Making Websites, and Competitive Coding?</h2>
<h1>Come join Desert Vista Programming Club!</h1>
<h1>Meetings Are Friday After School at 3:30!</h1>
<h1>Join our Remind to get Meeting Links and Info!</h1>
<h1>Remind: text @dvcoding21 to 81010</h1>
</div>
</section>
<br>
<section class = "index-links">
<a href = "game.html">
<div class = "index-boxlink">
<h3>Game/Web Design</h3>
</div>
</a>
<div class = "index-boxlink-notes">
<h4>Learn how to make video games with Unity and C#, as well as making websites using HTML, CSS, and Javascript!</h4>
</div>
<a href = "training.html">
<div class = "index-boxlink">
<h3>Code Exercises</h3>
</div>
</a>
<div class = "index-boxlink-notes">
<h4>Get practice in problem solving with code, in addition to prepping for AP Computer Science!</h4>
</div>
<a href = "events.html">
<div class = "index-boxlink">
<h3>Events Info</h3>
</div>
</a>
<div class = "index-boxlink-notes">
<h4>Learn about any events going on with Programming Club or other Robotics Clubs on campus!</h4>
</div>
<br>
</section>
</main>
<footer class = "footer">
<h3>Made By Allen Lin</h3>
<h3>Contact: [email protected]</h3>
<h3><a href = "https://www.tempeunion.org/desertvista">Visit Desert Vista's Website!</a></h3>
</footer>
</body>
</html>