-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (58 loc) · 2.06 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>365 Days of Web Development</title>
<link rel="stylesheet" href="./style.css">
</head>
<body>
<header>
<nav>
<div class="logo">365 Days of Web Dev</div>
<ul>
<li><a href="#">Home</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#resources">Resources</a></li>
<li><a href="#extra">More</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h1>Welcome to the 365 Days of Web Development Journey</h1>
<p>Join me as I create a new web project every day for a year!</p>
</section>
<section id="projects">
<h2>Our Projects</h2>
<div id="project-grid">
<!-- Project cards will be dynamically inserted here by JavaScript -->
</div>
</section>
<section id="Resources">
<h2>About This Challenge</h2>
<p>I've committed to building a new web development project every day for 365 days. This challenge is designed to improve my skills, explore new technologies, and create a diverse portfolio of web applications.</p>
</section>
<section id="extra">
<h2>More Coming Soon! </h2>
</section>
</main>
<footer>
<p>© 2024 Nexos Creator. All rights reserved.</p>
</footer>
<!-- Popup container -->
<aside id="popup-container" class="popup-container">
<div class="popup-fix">
<div class="popup-header">
<span class="close-popup">×</span>
<h2 id="popup-title"></h2>
</div>
<div class="popup-content">
<iframe id="project-iframe" src="" frameborder="0"></iframe>
</div>
<div class="popup-footer"></div>
</div>
</aside>
<script src="./script.js"></script>
</body>
</html>