-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathintroduction.html
More file actions
51 lines (49 loc) · 1.45 KB
/
Copy pathintroduction.html
File metadata and controls
51 lines (49 loc) · 1.45 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
<!DOCTYYPE html>
<html>
<head>
<title>Introduction</title>
<style>
table {
border-collapse:collapse;
}
td,th {
border: 1px solid;
text-align: left;
padding: 6px;
}
body {background-color: rgb(252, 238, 237) }
</style>
</head>
<body>
<h2>More about me:</h2>
<!--Table that shows skills, abilities, education, and training-->
<table>
<tr>
<th>Skills</th>
<td>Python, Java, C++, HTML</td>
</tr>
<tr>
<th>Abilities</th>
<td>Math, Problem Solving, Attention to Detail</td>
</tr>
<tr>
<th>Education</th>
<td>North Carolina Agricultural and Technical State University</td>
</tr>
<tr>
<th>Training</th>
<td>Algorithms, Computer Architecture, Program Design </td>
</tr>
</table>
<!--two images-->
<h3>Here is my most recent headshot: </h3>
<img src="img/DanaHeadshot.jpg" height="400" width="550">
<br>
<br>
<h3>Here is a picture of my dog! </h3>
<img src="img/Raven.jpeg" height="400" width="300">
<br>
<br>
<a href="index.html">Click here to go back to Index Page!</a>
</body>
</html>