-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 822 Bytes
/
Copy pathindex.html
File metadata and controls
27 lines (27 loc) · 822 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Chhavi's Pages</title>
<style>
div {
background-color: red;
height: 200px;
width: 100%;
overflow-y: scroll;
}
</style>
</head>
<body>
<h1>Hello world!</h1>
<p>Welcome to my Github Pages site!</p>
<p>This is my CS journey, documented.</p>
<div>
<h2>Some things about me:</h2>
<ul>
<li>I love Death Grips. I was introduced to them by my girlfriend.</li>
<li>I first thought I could get into CS after making a cool looking website on neocities! <a href="https://filmydidi.neocities.org">(here it is, very WIP though! never completed, got superceded by this website.)</a></li>
<li>That is all for now. I will add more as I think of it, but honestly, right now this is just a page for myself.</li>
</ul>
</div>
</body>
</html>