-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
45 lines (42 loc) · 1.62 KB
/
index.html
File metadata and controls
45 lines (42 loc) · 1.62 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
40
41
42
43
44
45
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css">
<title>My Website</title>
</head>
<body>
<h1>Robert Lent's Website</h1>
<div id='intro'>
<p>
This page, and pages that I link to, are made using my basic knowledge of HTML & CSS.
<br>As I learn more, the list will increase. Also as I learn more, I hope to add to this page to make it less empty.
<br>As of right now, my work consists of:
<ul>
<li>HTML/CSS</li>
<li>Javascript</li>
<li>Python</li>
<li>C#</li>
</ul>
</p>
</div>
<div id='links'>
<h3>These are my HTML/CSS/JS Projects:</h3>
<ul>
<li><a href='earthorbit/index.html' target="_blank">Earth Orbiting the Sun</a></li>
<li><a href='js_paperrockscissors/index.html' target="_blank">Paper, Rock, Scissors</a></li>
<li><a href='js_riddle/index.html' target="_blank">Riddles</a></li>
<li><a href='js_troll/index.html' target="_blank">Troll Game</a></li>
<li><a href='statusposting/index.html' target="_blank">Basic Status Updater</a></li>
</ul>
<h3>These are my Python Projects:</h3>
<ul>
<li><a href='py_battleship/index.html' target="_blank">Battleship</a></li>
<li><a href='py_numguess/index.html' target="_blank">Number Guessing Game</a></li>
</ul>
<h3>These are my C# Programs:</h3>
<ul>
<li><a href='csharp_picviewer/index.html' target="_blank">Picture Viewer</a></li>
</ul>
</div>
</body>
</html>