-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
86 lines (77 loc) · 1.94 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>All Andela Works</title>
<style>
:root {
--bg-color: #121212;
--accent-color: #fff;
}
body {
background-color: var(--bg-color);
color: var(--accent-color);
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
display: flex;
flex-direction: column;
min-height: 100vh;
}
.container {
flex: 1;
max-width: 800px;
margin: 20px auto;
padding: 20px;
background-color: #444;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
h1 {
text-align: center;
}
.card {
background-color: var(--bg-color);
padding: 20px;
margin-bottom: 20px;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.footer {
text-align: center;
margin-top: auto;
padding: 20px;
color: #888;
}
a button {
font-size: 15px;
border-radius: 20px;
border: none;
background-color: var(--accent-color);
color: var(--bg-color);
padding: 10px 13px;
font-weight: bold;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<h1>All Andela Works</h1>
<div class="card">
<h2>SnapChat Login Page</h2>
<p>This is a SnapChat Login Page designed with HTML, CSS and JavaScript.</p>
<center><a href="SnapChat/"><button>View Project</button></a></center>
</div>
<div class="card">
<h2>New Project Loading...</h2>
<p>I am currently working on a new project that will blow your mind 🤗.</p>
<!-- <center><a href="#"><button>View Project</button></a></center> -->
</div>
</div>
<div class="footer">
<p>David - ProgrammerDATCH</p>
</div>
</body>
</html>