-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (57 loc) · 2.01 KB
/
index.html
File metadata and controls
61 lines (57 loc) · 2.01 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
60
61
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
<title>Konstei — Projects</title>
<meta name="description" content="Project portfolio page" />
<link rel="stylesheet" href="style.css">
<script defer src="script.js"></script>
</head>
<body>
<div class="container">
<header>
<div class="brand">
<div class="logo">K</div>
<div>
<h1>Konstei</h1>
<div style="color:var(--muted);font-size:13px">Projects</div>
</div>
</div>
<nav>
<a href="#projects">Projects</a>
<a href="#about">About</a>
<a href="#contact">Contact</a>
</nav>
</header>
<div class="hero" id="controls">
<div class="hero-header">
<strong>Filter and explore projects</strong>
<div class="controls">
<input id="search" class="search" placeholder="Search projects..." />
</div>
</div>
<div class="tags" id="tagList">
<!-- tags inserted by JS -->
</div>
</div>
<main id="projects">
<div class="grid" id="grid">
<!-- project cards inserted by JS -->
</div>
</main>
<footer>
Built with plain HTML/CSS/JS — exportable static portfolio
</footer>
</div>
<div class="modal" id="modal" aria-hidden="true">
<div class="modal-card" role="dialog" aria-modal="true">
<div style="display:flex;justify-content:space-between;align-items:center;margin-bottom:10px">
<strong id="modalTitle"></strong>
<button class="close" id="modalClose">Close ✕</button>
</div>
<div id="modalBody" style="color:var(--muted);line-height:1.5"></div>
</div>
</div>
</body>
</html>