-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathportfolio.html
33 lines (27 loc) · 914 Bytes
/
portfolio.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Your Name - Projects</title>
<link rel="stylesheet" href="styles_portfolio.css">
</head>
<body>
<header>
<h1>Ilya "StormLord07" Repnev</h1>
<nav>
<a href="index.html">Home</a>
<a href="about.html">About</a>
<a href="portfolio.html">Projects</a>
<a href="blog.html">Blog</a>
<a href="contact.html">Contact</a>
</nav>
</header>
<section class="project-grid" id="github-projects">
<!-- Projects will be inserted here by JavaScript -->
</section>
<script src="src/script.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/js/all.min.js"></script>
<script src="src/footer.js"></script>
</body>
</html>