-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathportfolio.html
More file actions
59 lines (59 loc) · 1.88 KB
/
portfolio.html
File metadata and controls
59 lines (59 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Portfolio | Damaris Barajas</title>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<!-- Top Navigation Bar -->
<nav class="top-nav">
<ul>
<li><a href="index.html" onclick="showSection('about')">Home</a></li>
<li>
<a href="AboutMe.html" onclick="showSection('about')">About Me</a>
</li>
<li>
<a href="portfolio.html" onclick="showSection('portfolio')"
>Portfolio</a
>
</li>
<li>
<a href="resume.html" onclick="showSection('resume')">Resume</a>
</li>
<li>
<a href="contact.html" onclick="showSection('contact')">Contact</a>
</li>
</ul>
</nav>
<!-- Portfolio Section -->
<div class="portfolio-section">
<div class="portfolio-container">
<div class="portfolio-content-section">
<div class="portfolio-title">
<h1>My Portfolio</h1>
</div>
<div class="portfolio-content">
<p class="intro">
Check out some of the projects I’ve worked on. Its a collection of
weird websites, niche data projects, and CSS experiments. Some are
client projects I created. Check ’em out.
</p>
<ul class="projects">
<li>
<a
href="https://github.com/DamarisMB/Music-Band-Page"
target="_blank"
>Rebelution Band Page</a
>
</li>
<li><a href="#" target="_blank">BMI Calculator</a></li>
<li><a href="#" target="_blank">To-Do List</a></li>
</ul>
</div>
</div>
</div>
</div>
</body>
</html>