-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathlanding_page.html
163 lines (142 loc) · 4.01 KB
/
landing_page.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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to STEM eLearning</title>
<link rel="stylesheet" href="style.css">
<style>
/* Custom Styles for Landing Page */
/* General Styles */
body {
font-family: 'Arial', sans-serif;
color: #333;
background-color: #F0F4F8;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100vh;
text-align: center;
}
/* Header Styles */
header {
background-color: #009B4D;
/* Green */
color: #FFFFFF;
padding: 20px;
width: 100%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
header h1 {
margin: 0;
font-size: 28px;
}
header p {
font-size: 16px;
}
/* Button Styles */
.google-btn,
.apple-btn,
.microsoft-btn,
form button {
display: inline-block;
width: 80%;
max-width: 300px;
padding: 12px 20px;
font-size: 16px;
margin: 10px 0;
border: none;
border-radius: 5px;
cursor: pointer;
font-weight: bold;
}
.google-btn {
background-color: #DB4437;
/* Google Red */
color: #FFFFFF;
}
.apple-btn {
background-color: #333333;
/* Apple Black */
color: #FFFFFF;
}
.microsoft-btn {
background-color: #F3F2F1;
/* Microsoft Light Grey */
color: #333;
border: 1px solid #333;
}
.google-btn:hover {
background-color: #e66557;
}
.apple-btn:hover {
background-color: #4c4c4c;
}
.microsoft-btn:hover {
background-color: #e3e2e1;
}
/* Form Styles */
main form {
margin-top: 20px;
display: flex;
flex-direction: column;
align-items: center;
}
main form input {
width: 80%;
max-width: 300px;
padding: 12px;
margin: 8px 0;
font-size: 16px;
border-radius: 5px;
border: 1px solid #ccc;
}
main form input:focus {
border-color: #009B4D;
/* Green */
outline: none;
}
main form button {
background-color: #FFCC00;
/* Tangerine Yellow */
color: #001F3F;
/* Dark Blue */
}
main form button:hover {
background-color: #ffda44;
}
/* Responsive Styles */
@media (max-width: 768px) {
header h1 {
font-size: 24px;
}
.google-btn,
.apple-btn,
.microsoft-btn,
form button {
width: 90%;
}
}
</style>
</head>
<body>
<header>
<h1>Welcome to STEM eLearning</h1>
<p>Sign up to unlock knowledge in STEM fields.</p>
</header>
<main>
<button class="google-btn">Sign up with Google</button>
<button class="apple-btn">Sign up with Apple</button>
<button class="microsoft-btn">Sign up with Microsoft</button>
<form>
<input type="email" placeholder="Enter your email" required>
<input type="password" placeholder="Enter your password" required>
<button type="submit">Sign Up</button>
</form>
</main>
<script src="script.js"></script>
</body>
</html>