-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (65 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Neal Sharma - Programmer/Student</title>
<style>
*{
font-family: "Source Code Pro", source sans;
}
body {
margin: 0;
padding: 0;
background-color: #000000; /* Black background */
color: #00ff00; /* Green text color */
}
header {
background-color: #001100; /* Dark green header background */
color: #00ff00; /* Green header text color */
padding: 20px;
text-align: center;
}
h1, h2 {
margin: 10px 0;
}
main {
padding: 20px;
}
.project {
background-color: #001100; /* Dark green project background */
border: 1px solid #00ff00; /* Green project border */
border-radius: 5px;
padding: 20px;
margin-bottom: 20px;
}
footer {
background-color: #001100; /* Dark green footer background */
color: #00ff00; /* Green footer text color */
padding: 10px 0;
text-align: center;
position: fixed;
bottom: 0;
width: 100%;
}
</style>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200..900;1,200..900&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Neal Sharma - Programmer/Student</h1>
<h2>Welcome to My Website</h2>
</header>
<main>
<div class="project">
<h2>Project: Onion's Life</h2>
<p>Description: This is the hit game Onion's Life, created using Kaboom.js.</p>
</div>
</main>
<footer>
<p>© 2024 Neal Sharma</p>
</footer>
</body>
</html>