-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (44 loc) · 1.45 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="keywords" content="HTML, CSS, Javascript">
<meta name="description" content="My HTML Learnings">
<meta name="author" content="Eric Rodriguez">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Eric Rodriguez's Portfolio content</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<!-- Header Section -->
<header>
<h1>Eric Rodriguez</h1>
</header>
<!-- Main Content Section -->
<main>
<section id="about-me-section" class="about">
<h2>About</h2>
<p>I am a web development student who is interested in open source data, accessibility, and tech for social good.</p>
</section>
<section id="experience-section" class="skills">
<h2> Experience</h2>
<ul>
<li>Javascript</li>
<li>SQL</li>
<li>HTML</li>
</ul>
</section>
<section id="connect-section" class="connect">
<h2>Connect</h2>
<ul>
<li><a href="https://github.com/eric-m-rodriguez">Github</a></li>
<li><a href="https:www.linkedin.com/in/eric-rodriguez-743899b8">Linkedin</a></li>
</ul>
</section>
</main>
<!-- Footer Section -->
<footer>
<p> © 2024 Eric Rodriguez</p>
</footer>
</body>
</html>