-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
121 lines (116 loc) · 6.29 KB
/
Copy pathindex.html
File metadata and controls
121 lines (116 loc) · 6.29 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
<!DOCTYPE html>
<html lang="en" data-theme="day">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Executive minimalist personal website.">
<meta property="og:title" content="Executive Portfolio">
<meta property="og:description" content="Executive minimalist personal website.">
<meta property="og:type" content="website">
<title>Executive Portfolio</title>
<meta name="color-scheme" content="light dark">
<meta name="theme-color" content="#F7F5F0">
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Playfair+Display:wght@400;600&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header class="site-header">
<nav class="nav">
<div class="nav-inner">
<div class="header-banner" role="banner" aria-label="Current date time weather">
<div id="banner-date" class="banner-item" aria-live="polite">[date]</div>
<div id="banner-time" class="banner-item" aria-live="polite">[time]</div>
<div id="banner-weather" class="banner-item" aria-live="polite">[weather]</div>
</div>
<ul class="nav-menu" role="menu">
<li class="menu-brand">
<div class="wordmark">PORTFOLIO</div>
</li>
<li class="menu-theme">
<button class="theme-toggle" id="theme-toggle" type="button" data-mode="auto" aria-label="Theme: Auto (click to cycle Day, Auto, Night)" title="Theme: Auto">
<span class="theme-toggle-label">Day</span>
<span class="theme-toggle-label-auto">Auto</span>
<span class="theme-toggle-label">Night</span>
<span class="sr-only">Current theme: Auto. Click to cycle through Day, Auto, and Night modes.</span>
</button>
</li>
<li class="menu-units" role="group" aria-label="Temperature units">
<div class="unit-toggle" id="unit-toggle">
<button class="unit-btn" data-unit="both" aria-pressed="true">Both</button>
<button class="unit-btn" data-unit="F" aria-pressed="false">°F</button>
<button class="unit-btn" data-unit="C" aria-pressed="false">°C</button>
</div>
</li>
<li class="mobile-only"><a href="#home">Banner</a></li>
<li><a href="#about">About</a></li>
<li><a href="#portfolio">Portfolio</a></li>
</ul>
<button class="hamburger" aria-label="Open navigation" aria-expanded="false" type="button">
<span></span>
<span></span>
<span></span>
</button>
</div>
</nav>
</header>
<main>
<section id="home" class="section hero reveal" aria-label="Banner — date time weather">
<div class="container hero-shell">
<div class="hero-frame" role="region" aria-label="Banner (mobile)">
<div class="hero-copy banner-only">
<div class="banner-row">
<div class="banner-item placeholder">[Banner visible on mobile menu only — header shows live date/time/weather]</div>
</div>
</div>
</div>
</div>
</section>
<section id="about" class="section reveal">
<div class="container section-inner">
<div class="section-header">
<h2 class="section-title title-serif">[About]</h2>
<div class="section-rule" aria-hidden="true"></div>
</div>
<div class="section-body">
<p class="placeholder">[Add your About text here — each paragraph will align to the ruled lines]</p>
</div>
</div>
</section>
<section id="portfolio" class="section section-alt reveal">
<div class="container section-inner">
<div class="section-header">
<h2 class="section-title title-serif">[Portfolio]</h2>
<div class="section-rule" aria-hidden="true"></div>
</div>
<div class="portfolio-grid">
<article class="portfolio-card reveal" aria-labelledby="p1-title">
<h3 id="p1-title" class="placeholder">[Project / Case study title]</h3>
<p class="placeholder">[Short description — replace me]</p>
</article>
<article class="portfolio-card reveal" aria-labelledby="p2-title">
<h3 id="p2-title" class="placeholder">[Project / Case study title]</h3>
<p class="placeholder">[Short description — replace me]</p>
</article>
<article class="portfolio-card reveal" aria-labelledby="p3-title">
<h3 id="p3-title" class="placeholder">[Project / Case study title]</h3>
<p class="placeholder">[Short description — replace me]</p>
</article>
<article class="portfolio-card reveal" aria-labelledby="p4-title">
<h3 id="p4-title" class="placeholder">[Project / Case study title]</h3>
<p class="placeholder">[Short description — replace me]</p>
</article>
</div>
</div>
</section>
</main>
<footer class="site-footer">
<div class="container footer-inner">
<div class="footer-links">
<a href="https://discord.com/invite/qKXdqrUjmc" class="footer-link" target="_blank" rel="noopener noreferrer">Discord</a>
<a href="https://www.linkedin.com/in/zachary-soignoli/" class="footer-link" target="_blank" rel="noopener noreferrer">LinkedIn</a>
</div>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>