-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (60 loc) · 1.87 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Steam Release Calendar</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 20px;
background-color: #f4f4f4;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 20px;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
h1 {
color: #333;
}
p {
line-height: 1.6;
color: #555;
}
a {
color: #007bff;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
.calendar-link {
margin-top: 20px;
display: inline-block;
padding: 10px 15px;
background-color: #007bff;
color: white;
text-decoration: none;
border-radius: 5px;
}
.calendar-link:hover {
background-color: #0056b3;
}
</style>
</head>
<body>
<div class="container">
<h1>Steam Release Calendar</h1>
<p>Welcome to the Steam Release Calendar! This page provides a downloadable and subscribable calendar file that keeps track of upcoming game releases on Steam.</p>
<p>The calendar is automatically updated every month and contains the release dates for all the exciting games coming to Steam in the current month. You can easily add it to your calendar app by subscribing to the file linked below.</p>
<a class="calendar-link" href="upcoming_steam_releases.ics" download>Download the Calendar</a>
<p>To subscribe in your calendar app, copy this URL and add it as a new calendar subscription:</p>
<p><a href="https://tristanmcbride.github.io/SteamReleaseCalendar/upcoming_steam_releases.ics">https://tristanmcbride.github.io/SteamReleaseCalendar/upcoming_steam_releases.ics</a></p>
</div>
</body>
</html>