-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
51 lines (47 loc) · 1.3 KB
/
index.html
File metadata and controls
51 lines (47 loc) · 1.3 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
47
48
49
50
51
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="light dark" />
<link rel="stylesheet" href="css/pico.classless.min.css" />
<link rel="alternate" type="text/calendar" href="events.ics" title="Cornwall Developers Events" />
<title>Cornwall Developers</title>
<style>
.categories {
display: flex;
flex-wrap: wrap;
gap: 0.5rem;
margin: 0.5rem 0;
padding: 0;
list-style: none;
}
.categories li {
background: transparent;
color: var(--pico-primary, #1095c1);
border: 1px solid var(--pico-primary, #1095c1);
padding: 0.25rem 0.75rem;
border-radius: 50px;
font-size: 0.875rem;
font-weight: 500;
margin: 0;
white-space: nowrap;
list-style: none;
}
</style>
</head>
<body>
<header>
<hgroup>
<h1>Cornwall Developers</h1>
<p>Building a stronger tech community in Cornwall</p>
</hgroup>
</header>
<main>
<p>🚧 These are not real events 🚧</p>
<section id="events-list">
</section>
</main>
<script src="js/events.js"></script>
</body>
</html>