-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
101 lines (99 loc) · 2.88 KB
/
Copy pathindex.html
File metadata and controls
101 lines (99 loc) · 2.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
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
<!DOCTYPE html>
<html>
<head>
<title>David Ramirez Resume</title>
<style>
.footer{
text-align: center;
padding:10px;
background-color: #ddd;
}
.table{
width: 100%;
border: 1px solid black;
}
dt{
font-weight: bold;
}
section{
padding: 10px;
border: 1px solid black;
margin: 10px;
}
</style>
</head>
<body>
<header class="header">
<h1>David Ramirez</h1>
</header>
<nav class="navbar">
<ul>
<li><a href="#Exp">Experience</a></li>
<li><a href="#Edu">Education</a></li>
<li><a href="#Int">Interests</a></li>
<li><a href="#Ski">Skills</a></li>
<li><a href="#Con">Contact</a></li>
</ul>
</nav>
<article> <p>Welcome to my website</p>
<hr>
<p>My name is David</p>
<img src="https://media.licdn.com/dms/image/v2/D4D03AQF_LGZYQaRTjA/profile-displayphoto-shrink_400_400/B4DZYGkDX1HAAg-/0/1743866837379?e=1772064000&v=beta&t=xvdg6SF-zI3YKhfwcQL-NSCrb88_yzE0rAUzi-5lagM">
</article>
<section id="Exp">
<h2>Experience</h2>
<table>
<colgroup>
<col span="1" style="background-color: #ddd;">
</colgroup>
<tr>
<th>Company</th>
<th>Details</th>
<th>Years</th>
</tr>
<tr>
<td>Khaos</td>
<td>Software Programmer</td>
<td>2024-2026</td>
</tr>
<tr>
<td>Renvica</td>
<td>Software Programmer</td>
<td>2020-2022</td>
</tr>
</table>
</section>
<section id="Edu">
<h2>Eduaction</h2>
<dl>
<dt>My University</dt>
<dd>Computer Science</dd>
<dt>Grade</dt>
<dd>Maths</dd>
</dl>
</section>
<section id="Int">
<h2>Interests</h2>
<ul>
<li>Computers</li>
<li>Music</li>
</ul>
</section>
<section id="Ski">
<h2>Skills</h2>
<ol>
<li>CSS</li>
<li>HTML</li>
<li>JavaScript</li>
</ol>
</section>
<section id="Con">
<h2>Contact Me</h2>
<p>
Contact me at my email
<a href="mailto:ramirezpalaciosd@gmail.com">ramirezpalaciosd@gmail.com</a>
</p>
</section>
<footer class="footer">Copyright</footer>
</body>
</html>