-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
39 lines (38 loc) · 1.32 KB
/
Copy pathindex.html
File metadata and controls
39 lines (38 loc) · 1.32 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
<DOCTYPE <!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Basement</title>
<link rel = "stylesheet" href = "index.css" />
<style>
body{background-color: LightYellow;}
ul {background-color: LightYellow;}
</style>
</head>
<body>
<h1><em>The Basement</em></h1>
<br>
<div style="background-color:White;border: 3px solid LightCoral;">
<br>
<p>This is a page I created to track my progression with coding. I have added a link below to my GitHub, which contains various exercises written in Java.</p>
<p>I am also using this page as a technical blog to share my experiences with learning to become a Java Developer.</p>
<br>
</div>
<br>
<br>
<ul>
<li>
<a href = "aboutme.html">1st Floor: About Me</a></li>
<li>
<a href = "https://github.com/sroach1028/">2nd Floor: Link to my Github</a></li>
<li>
<a href = "entry1.html">3rd Floor: Talking about If Statements</a></li>
<li>
<a href = "entry2.html">4th Floor: Talking about switch statements</a></li>
</ul>
<div style="border: 3px solid LightCoral;">
<img src = "https://static.rogerebert.com/uploads/review/primary_image/reviews/great-movie-the-big-lebowski-1998/hero_Big-Lebowski-image.jpg"/>
</div>
<br>
</body>
</html>