-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
57 lines (46 loc) · 1.79 KB
/
index.html
File metadata and controls
57 lines (46 loc) · 1.79 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
<!doctype html>
<html lang="tr">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>SPA Portfolyo</title>
<link rel="stylesheet" href="./style.css" />
</head>
<body>
<a class="skip-link" href="#main">İçeriğe atla</a>
<header class="site-header">
<div class="container header-inner">
<div class="brand" aria-label="Site markası">
<span class="logo" aria-hidden="true">◆</span>
<span id="brandName" class="brand-text">Ad Soyad</span>
</div>
<button id="menuBtn" class="menu-btn" type="button" aria-controls="siteNav" aria-expanded="false">
<span class="menu-icon" aria-hidden="true"></span>
<span class="menu-text">Menü</span>
</button>
<nav id="siteNav" class="site-nav" aria-label="Ana menü">
<a class="nav-link" href="#hakkimda">Hakkımda</a>
<a class="nav-link" href="#projeler">Projeler</a>
<a class="nav-link" href="#iletisim">İletişim</a>
</nav>
</div>
</header>
<main id="main" class="site-main">
<div class="container">
<section class="page-head" aria-live="polite">
<h1 id="pageTitle">Yükleniyor...</h1>
<p id="pageSubtitle" class="muted"></p>
</section>
<!-- SPA içerik alanı (JS burayı dinamik doldurur) -->
<section id="content" class="content" aria-live="polite"></section>
</div>
</main>
<footer class="site-footer">
<div class="container footer-inner">
<small>© <span id="year"></span> <span id="footerName">Ad Soyad</span> — SPA Portfolyo</small>
<small class="muted">HTML5 • CSS3 • JavaScript (ES6+)</small>
</div>
</footer>
<script src="./app.js" defer></script>
</body>
</html>