-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
78 lines (70 loc) · 1.68 KB
/
index.html
File metadata and controls
78 lines (70 loc) · 1.68 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>LaunchCode Continuous Learning</title>
<style>
body {
margin: 0;
font-family: "Helvetica Neue", Arial, sans-serif;
background: linear-gradient(135deg, #3273dc, #00d1b2);
color: #fff;
display: flex;
flex-direction: column;
height: 100vh;
}
header {
text-align: center;
margin: auto 0;
padding: 2rem;
}
h1 {
font-size: 3rem;
letter-spacing: 1px;
margin-bottom: 1rem;
}
p {
font-size: 1.25rem;
max-width: 600px;
margin: 0 auto 2rem;
line-height: 1.6;
}
a.cta-button {
display: inline-block;
background: #fff;
color: #3273dc;
font-size: 1rem;
font-weight: bold;
text-decoration: none;
padding: 0.75rem 1.5rem;
border-radius: 0.5rem;
transition: background 0.3s ease, color 0.3s ease;
}
a.cta-button:hover {
background: #eee;
color: #3273dc;
}
footer {
text-align: center;
padding: 1rem;
font-size: 0.9rem;
color: #fff;
opacity: 0.8;
}
</style>
</head>
<body>
<header>
<h1>LaunchCode Continuous Learning</h1>
<p>Empowering alumni to continue coding, grow professionally, and adapt to new technologies — one lesson at a time.</p>
<a class="cta-button" href="#">Get Started</a>
</header>
<footer>
© <span id="year"></span> LaunchCode. All Rights Reserved.
</footer>
<script>
document.getElementById('year').textContent = new Date().getFullYear();
</script>
</body>
</html>