-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
139 lines (128 loc) · 3.74 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="google-site-verification" content="sxkzR6jKs4ELjpleRqsLcbSBVF96UILQ_YuFCyBVnho" />
<title>ASU Video Game Development Club</title>
<style>
body {
margin: auto;
line-height: 1.2;
color: #333;
background: #eee;
font-family: Helvetica, Arial, sans-serif;
display: flex;
flex-direction: column;
align-items: center;
}
li>ul {
padding-left: 0;
}
h1 {
margin-block-start: 0;
}
h4 {
margin-bottom: 0;
}
p {
padding-left: 40px;
margin-bottom: 0;
}
.logo {
width: 200px;
}
.images {
text-align: center;
}
.content img {
width: 100px;
margin-left: 40px;
}
@media screen and (max-width : 600px) {
.content{
margin-left: 0;
}
#logo{
position: relative;
}
}
</style>
</head>
<body>
<div class="images">
<img class="logo" src="VGDCLogoTrnsPNTBig.png" alt="">
<img class="logo heatwave" src="VGDC_heatwave_logo.png" alt="Heatwave Studio logo">
</div>
<div>
<h1>ASU Video Game Development Club</h1>
<section>
<h2>Meetings</h2>
<h4>Summer 2021</h4>
<ul>
<li>Thursdays 7 - 9 on Discord</li>
</ul>
<h4>Fall 2021 (Starting 8/27)</h4>
<ul>
<li>Fridays 1:30 - 4 Hayden C1</li>
</ul>
</section>
<section>
<h2>Events This Semester</h2>
<h4>
Club Social
</h4>
<ul>
<li>Fall 2021 TBA</li>
</ul>
<h4>Club Game-Jam</h4>
<ul>
<li>Fall 2021 TBA</li>
</ul>
<h4>Game Release Event</h4>
<ul>
<li>April 2022 TBA</li>
</ul>
</section>
<section>
<h2>Contact</h2>
<ul>
<li>
Email:
<a href="mailto:heatwavestudioaz@gmail.com">heatwavestudioaz@gmail.com</a>
</li>
<li>
Facebook:
<a href="https://www.facebook.com/VGDCASU/">https://www.facebook.com/VGDCASU/</a>
</li>
<li>
Twitter:
<a href="https://twitter.com/HeatwaveAZ/">https://twitter.com/HeatwaveAZ/</a>
</li>
</ul>
</section>
<section>
<h2>Games</h2>
<ul style="margin-top: 0;">
<li>
We publish as Heatwave Studio
</li>
<li>
<a href="https://heatwave-studios.itch.io/">Catch us on Itch.io!</a>
</li>
<li>
<a href="https://store.steampowered.com/search/?developer=Heatwave%20Studios">Catch us on Steam!</a>
</li>
</ul>
</section>
<!-- <section>
<h3>Sponsors</h3>
<ul>
<li>Leaving this here in the event we get sponsored again lol.</li>
</ul>
</section> -->
<p style="padding-left: 0">© ASU Video Game Development Club 2021</p>
</div>
</body>
</html>