-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (72 loc) · 3.56 KB
/
index.html
File metadata and controls
76 lines (72 loc) · 3.56 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-WDCEG6K4DY"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-WDCEG6K4DY');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Brandon Walowitz | Designer, Creative Director, Brand Strategist, and Video Producer</title>
</head>
<body>
<!-- Notice bar -->
<div id="notice" style="display:none;background:#fff6d8;border-bottom:1px solid rgba(0,0,0,.1);font:15px/1.4 system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:#2b2b2b;text-align:center">
<div style="max-width:1200px;margin:0 auto;padding:10px 16px;display:flex;gap:12px;align-items:center;justify-content:center;flex-wrap:wrap">
<span>Site’s getting a refresh. Please excuse the mess while I update things.</span>
<button id="notice-close" aria-label="Dismiss" style="border:1px solid rgba(0,0,0,.15);background:#fff;border-radius:6px;padding:4px 10px;font-weight:600;cursor:pointer;font-size:14px">OK</button>
</div>
</div>
<script>
(function () {
const key = "bw_notice_closed_v1";
if (!localStorage.getItem(key)) {
document.getElementById("notice").style.display = "block";
}
document.getElementById("notice-close")?.addEventListener("click", () => {
localStorage.setItem(key, "1");
document.getElementById("notice").style.display = "none";
});
})();
</script>
<header>
<nav>
<ul>
<li><a class="active-link" href="index.html">Work</a></li>
<li><a href="about.html">About</a></li>
<li><a href="resume.html">Resume</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main>
<h1><a class="heading-link" href="index.html">Brandon Walowitz</a></h1>
<h2>I'm a designer, creative director, brand strategist, and video producer in Camas, Washington.</h2>
<p class="main-paragraph">I specialize in working directly with executives and interdisciplinary teams. I solve your business problems and bring brands to life through design, brand strategy, digital, print, and video.</p>
<div class="flex">
<a href="project-redwood-rebrand.html"><img class="image-grid" src="images/redwoodlogo-original-1.png" alt="dog"></a>
<img class="image-grid" src="images/ellenshop-2.png" alt="dog">
<img class="image-grid" src="images/redwood-folder-1.png" alt="dog">
<a href="project-abled.html"><img class="image-grid" src="images/abled-1.png" alt="dog"></a>
<img class="image-grid" src="images/bekindbyellen-1.png" alt="dog">
<img class="image-grid" src="images/roots-presentation-1.png" alt="dog">
<img class="image-grid" src="images/redwoodgames2019-3.png" alt="dog">
<img class="image-grid" src="images/lightifier-1.png" alt="dog">
<a href="project-sarahsilverman.html"><img class="image-grid" src="images/sarahsilverman-2.png" alt="dog"></a>
<img class="image-grid" src="images/outstanding-1.jpeg" alt="dog">
<a href="project-makeful.html"><img class="image-grid" src="images/makeful-1.png" alt="dog"></a>
<a href="project-mrkate.html"><img class="image-grid" src="images/mrkate-1.png" alt="dog"></a>
<img class="image-grid" src="images/roots-2.png" alt="dog">
</div>
</main>
<footer>
<p>Copyright ©2026 Brandon Walowitz</p>
<p>All Rights Reserved</p>
</footer>
</body>
</html>