-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (81 loc) · 2 KB
/
index.html
File metadata and controls
92 lines (81 loc) · 2 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<!-- extra data. all text is encoded use the utf-8 coding system.
Meta tag is important tp search engines-->
<title>Sal's Page</title>
</head>
<body>
<table cellspacing="20">
<tr>
<td><img src="images/SalChessStatue.jpg" alt="Sal pertending to play chess on bench with statue" width="200" height="200">
<!-- alt text used if omage does not load and buy search engines -->
</td>
<td>
<h1><a href="https://www.instagram.com/svitore/">Sal</a></h1>
<p>
<em>Developer in <strong>training</strong></em>
<!-- em tells broswer the text is emphasized.
Strong tag is similar, conveys meaning to the browser -->
</p>
<p>
Learning to code to complete my years long dream of doing so.
</p>
</td>
</tr>
</table>
<hr>
<h3>Education</h3>
<ul>
<li>The Complete iOS App Development Bootcamp</li>
<li>The Complete Web Development Bootcamp</li>
</ul>
<hr>
<table cellspacing="10">
<thead>
<tr>
<th>Dates</th>
<th>Life Activity</th>
</tr>
</thead>
<tbody>
<tr>
<td>1992 to 2005</td>
<td>K through 12</td>
</tr>
<tr>
<td>2005 to 2021</td>
<td>Work experience</td>
<tr>
<td>2021 to 2022</td>
<td>Finished learning Web and iOS development</td>
</tr>
</tbody>
<tfoot>
</tfoot>
</table>
<hr>
<h3>Skills</h3>
<table cellspacing ="10">
<tr>
<td>Web Development</td>
<td>⭐️</td>
</tr>
<tr>
<td>iOS Development</td>
<td>⭐️</td>
</tr>
<tr>
<td>Problem Solving</td>
<td>⭐️⭐️⭐️⭐️</td>
</tr>
<tr>
<td>Comedian</td>
<td>⭐️</td>
</tr>
</table>
<a href="hobbies.html">My Hobbies</a>
<a href="contact.html">Contact</a>
</body>
</html>