-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
63 lines (56 loc) · 1.88 KB
/
index.html
File metadata and controls
63 lines (56 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Robert's Personal Site</title>
</head>
<body>
<!-- p - paragraph, ul - unorderred list, ol, ordered list,
img src - insert imagae, <a> - anchor - used to insert hyperlinks
-->
<table Cellspacing= "20">
<tr>
<td><img src="Robert image.PNG" alt="Robert picuter"></td>
<td> <h1> Robert Daniel</h1>
<p><em>Founder and CTO of <strong>Roberts Page</strong></em></p>
<p> Robert is doing this page to learn web development and become a stronger coder</p></td>
</tr>
</table>
<hr>
<h3>Schools Attended</h3>
<ul>
<li><a href="https://www.mercer.edu/">Mercer University</a></li>
<li><a href="https://www.mga.edu/">Macon State</a></li>
</ul>
<hr>
<h3>Work Experience</h3>
<table cellspacing= "10">
<tr>
<td>2010 - 2015</td>
<td>Call Center</td>
</tr>
<tr>
<td>2015 - 2020</td>
<td>IT Work</td>
</tr>
</table>
<hr>
<h3><a href="hobbies.html">My Hobbies</a></h3>
<ol type="i">
<li>Reading</li>
<li>Coding</li>
</ol>
<h3>Skill</h3>
<table CellSpacing= "10">
<tr>
<td>Web Development</td>
<td>⭐⭐⭐⭐</td>
</tr>
<tr>
<td>Coding</td>
<td>⭐⭐⭐</td>
</tr>
</table>
<h3><a href="Contact Page.html">Contact</a></h3>
</body>
</html>