-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (37 loc) · 1.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>My Personal Introduction</title>
<style>
body {
background-color: #BAC0A4;
}
h1 {
color: navy;
}
p {
color: #0F1C33;
}
</style>
</head>
<body>
<h1>My name is Professor T</h1>
<p>I teach computer programming and development at Wake Tech Community College in Raleigh, NC.</p>
<p>I have lived in four states for longer than a year: New York, Virginia, Pennsylvania, and North Carolina.</p>
<p>I am a professional Spades player as a member of the VA Ballerz.</p>
<p>Links</p>
<ul>
<li><a href="index.html">Home Page</a></li>
<li><a href="hello_world_professor.html">Hello World</a></li>
<li><a href="professor_python_script.html">Python Script</a></li>
</ul>
<p>Other Projects</p>
<ul>
<li>Mermaid - Guessing Game</li>
<li>Flowgorithm - Add Numbers</li>
<li>Flowgorithm - Guessing Game</li>
</ul>
</body>
</html>