-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
68 lines (49 loc) · 1.57 KB
/
Copy pathabout.html
File metadata and controls
68 lines (49 loc) · 1.57 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>About Me</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class="header">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="portfolio.html">Portfolio</a></li>
<li><a class="active" href="about.html">About Me</a></li>
</ul>
</header>
<h1>All about yours truly</h1>
<div class="content-box-gray">
<div class="container">
<div class="title"> Nogales Hig School </div>
<div class="content"> I teach math and computers at
<a href="http://nogaleshs.org">Nogales High School</a> </li>
</div>
</div>
</div>
<div class="content-box-gray">
<div class="container">
<div class="title"> Sons and Heirs </div>
<div class="content">
<img src="images/DSCN1165.JPG" height="200">
<br>
These are my two sons. Both in college now.
</div>
</div>
</div>
<div class="content-box-gray">
<div class="container">
<div class="title"> Joke </div>
<div class="content">
Q: Why do programmers always mix up Halloween and Christmas? <br>
A: Because Oct 31 == Dec 25!
</div>
</div>
</div>
<br>
<a target="_blank" href="https://scratch.mit.edu">
<img src="images/scratchlogo.png" height="100">
</a>
</body>
</html>