-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
108 lines (101 loc) · 4.57 KB
/
index.html
File metadata and controls
108 lines (101 loc) · 4.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Angel</title>
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body class="body">
<nav class="bar">
<a href="#flex-container" class="bar-link">My Hobbies</a>
<a href="#gallery" class="bar-link">Gallery</a>
</nav>
<h1 id="title" class="h1">All about me</h1>
<h2 class="header">Links</h2>
<a class="link" href="https://www.youtube.com/" target="_blank">Youtube</a>
<br>
<a class="link" href="#photogallery">Go to Gallery</a>
<h2 class="header">Quick summary</h2>
<p class="p">
My name is Angel Salazar, I'm 19 years old, and I lived in Mississippi my whole life. I went and graduated from Vardaman High School, with honors.
I'm currently a student at Base Camp Coding Academy, where I’m learning how to do frontend and backend coding and be a full stack developer.
I’m hoping in the future to get more into video game development and start creating my own video games.
My reason for going into video game development is because I was inspired by FromSoftwear games.
I’m still new to coding but I’m still trying my best to learn and understand.
</p>
<br>
<h2 class="header">My Hobbies</h2>
<br>
<ul class="list-item">
<li class="list-item">Gaming</li>
<li class="list-item">Watching movies</li>
<li class="list-item">Drawing</li>
<li class="list-item">Lifting weights/working out</li>
<li class="list-item">Cooking</li>
<li class="list-item">Reading comic books</li>
</ul>
<br>
<h2 id="photogallery" class="header"> Photo Gallery</h2>
<img class="jpg" src="images/IMG_9418.jpg" height="200" width="160" alt="First week of Base Camp">
<br>
<img class="jpg2" src="images/1000002988.jpg" height="200" width="200" alt="Cooking for myself">
<br>
<img class="jpg3" src="images/20250118_143419.jpg" height="200" width="250" alt="">
<h2 class="header">Weekly schedule</h2>
<table border="1" class="table">
<thead>
<tr>
<th class="th">Schedule</th>
<th class="th">Morning</th>
<th class="th">Evening</th>
<th class="th">Night</th>
</tr>
</thead>
<tbody>
<tr class="tr">
<td>Sunday</td>
<td>Wake up and spend time with family</td>
<td>Get ready to go back to Water Valley</td>
<td>Go to sleep to get ready for school</td>
</tr>
<tr class="tr">
<td>Monday</td>
<td>Wake up and go to class</td>
<td>Relax from School</td>
<td>Go to sleep to get ready for school</td>
</tr>
<tr class="tr">
<td>Tuesday</td>
<td>Wake up and go to class</td>
<td>Relax from School</td>
<td>Go to sleep to get ready for school</td>
</tr>
<tr class="tr">
<td>Wednesday</td>
<td>Wake up and go to class</td>
<td>Relax from School</td>
<td>Go to sleep to get ready for school</td>
</tr>
<tr class="tr">
<td>Thursday</td>
<td>Wake up and go to class</td>
<td>Relax from School</td>
<td>Go to sleep to get ready for school</td>
</tr>
<tr class="tr">
<td>Friday</td>
<td>Wake up and go to class</td>
<td>Go home for the weekend</td>
<td>Spend time with family and go to sleep later</td>
</tr>
<tr class="tr">
<td>Saturday</td>
<td>Do whatever I want</td>
<td>Do whatever I want</td>
<td>Do whatever I want</td>
</tr>
</tbody>
</table>
</body>
</html>