-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
52 lines (47 loc) · 2.28 KB
/
index.html
File metadata and controls
52 lines (47 loc) · 2.28 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Moses Roth</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<nav class="top-nav">
<a href="index.html" class="nav-link active">Bio</a>
<a href="writing.html" class="nav-link">Writing</a>
<a href="videos.html" class="nav-link">Videos</a>
</nav>
<div class="two-column">
<div class="photo-column">
<img src="profile.png" alt="Moses Roth" class="profile-photo">
</div>
<div class="content-column">
<h1>Moses Roth</h1>
<p class="bio">Moses is a Developer Evangelist for Fire TV & Alexa+ at Amazon. He manages the developer community forum and content workstreams, and writes articles and creates videos. He previously worked as an English teacher and Peace Corps volunteer. In his free time, he likes to write fiction and spend time with his wife Basak and dog Luna.</p>
<div class="divider"></div>
<div class="nav-links">
<a href="writing.html">Writing</a>
<a href="videos.html">Videos</a>
</div>
<div class="divider"></div>
<div class="social-links">
<a href="https://linkedin.com/in/mosesroth" target="_blank">
<img src="LinkedIn_logo_initials.png" alt="LinkedIn" class="social-icon">
</a>
<a href="https://x.com/mosesroth" target="_blank">
<img src="logo-black.png" alt="X" class="social-icon">
</a>
<a href="https://github.com/mosesroth" target="_blank">
<img src="github-mark.png" alt="GitHub" class="social-icon">
</a>
<a href="https://bsky.app/profile/mosesroth.com" target="_blank">
<img src="Bluesky_butterfly-logo.png" alt="Bluesky" class="social-icon">
</a>
</div>
</div>
</div>
</div>
</body>
</html>