-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (52 loc) · 1.3 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
<!-- this was generated by chatgpt, let's see how bad it is lol -->
<!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>Windsor Code Camp</title>
<style>
body {
background-color: #ffffff;
color: #1b1464;
font-family: Arial, sans-serif;
}
h1, h2 {
color: #9f005d;
text-align: center;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
}
.logo {
display: block;
margin: 0 auto;
max-width: 200px;
}
.btn {
display: inline-block;
background-color: #9f005d;
color: white;
padding: 10px 20px;
border-radius: 5px;
text-decoration: none;
margin-top: 20px;
}
.btn:hover {
background-color: #ff007f;
}
</style>
</head>
<body>
<div class="container">
<img src="wcc-logo.png" alt="Windsor Code Camp Logo" class="logo">
<h1>Windsor Code Camp</h1>
<h2>June 19th, 2023</h2>
<p>Welcome to the Windsor Code Camp, a two-week event for developers, designers, and tech enthusiasts. Join us for an event full of learning, networking, and fun.</p>
<!-- <a href="#" class="btn">Register Now</a> -->
</div>
</body>
</html>