-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 1.14 KB
/
Copy pathindex.html
File metadata and controls
34 lines (31 loc) · 1.14 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
<!DOCTYPE html>
<!-- ============================================================
HOME PAGE — you don't need to edit this file.
All the words on this page come from the data/ folder.
============================================================ -->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Home · My Portfolio</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Sora:wght@600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body data-page="home">
<main class="container">
<section class="hero" id="hero"></section>
<section class="section">
<div class="section-head">
<h2>✨ Featured projects</h2>
<a class="see-all" href="projects.html">See all →</a>
</div>
<div id="featured-projects"></div>
</section>
</main>
<!-- data first, then the engine -->
<script src="data/profile.js"></script>
<script src="data/projects.js"></script>
<script src="js/main.js"></script>
</body>
</html>