-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (98 loc) · 3.58 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
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
<!doctype html>
<html lang="en" class="h-100">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta
name="description"
content="Brian Redfern links to my code and music."
/>
<link rel="shortcut icon" href="/favicon.ico" />
<title>The website of engineer Brian Redfern.</title>
<link
rel="stylesheet"
type="text/css"
rel="preload"
as="style"
href="/site.css"
/>
</head>
<body>
<div class="container">
<header>
<h1>Brian Redfern</h1>
</header>
<nav>
<div class="menu">
<ul>
<li>
<a
href="https://linkedin.com/in/bredfern"
target="new"
class="menu-item"
>Linkedin</a
>
</li>
<li>
<a
href="https://github.com/bredfern"
class="menu-item"
target="new"
>Github</a
>
</li>
<li>
<a
href="https://mastodon.sdf.org/@redfern"
class="menu-item"
target="new"
>Mastadon</a
>
</li>
</ul>
</div>
</nav>
<main>
<div class="centered">
<picture>
<img
src="/redfern.svg"
id="logo"
width="400"
height="300"
alt="Brian Redfern"
/>
</picture>
</div>
<div>
<h2>Hi I'm Brian</h2>
<p>
I am a senior web developer, and performer/composer of
music. I started out way back in 1998 with the pre-ipo
team at Geocities. I started out with javascript before
there were any frameworks and continue to work with low
level "vanilla" javascript. I went into LAMP in the early 2000s
and then moved into full stack Nodejs
and various JS frameworks with Typescript.
</p>
</div>
</main>
<aside>
<div class="aside-content">
<h3>Contact Me</h3>
<hr />
<form id="contact">
<label for="email">Email:</label>
<input type="email" id="email" name="email" />
<label for="message">Message:</label>
<textarea name="message" id="message"></textarea>
<p><button id="contact-form-button">Submit</button></p>
<p id="contact-form-status"></p>
</form>
</div>
</aside>
<footer class="centered">© 2024 Brian Redfern</footer>
</div>
<script src="/contact.js" defer></script>
</body>
</html>