-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
70 lines (69 loc) · 2.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Daniel W. Lu</title>
<meta charset="UTF-8">
<meta name="viewport" content="initial-scale=1.0">
<link href="css/main.css" rel="stylesheet">
<script src="https://code.jquery.com/jquery-3.3.1.min.js"></script>
</head>
<body>
<div id="navbar">
<a href="#" class="name link">Daniel W. Lu</a>
<a href="#video" class="link">Video</a>
<a href="#overpass" class="link">Overpass</a>
<a href="#contact" class="link">Contact</a>
<span id="hamburger">≣</span>
</div>
<div id="attract">
<!-- <video muted autoplay="true" loop="true" src="media/vid_oscilloscope.mp4" class="cover"></video> -->
<img src="media/img_dive.jpg" class="cover" alt="Dive">
<div class="caption">
<h3>Museum of Neon Art</h3>
<p>Glendale, CA</p>
</div>
</div>
<div id="audio">
<audio controls>
<source src="media/HouseDrums_take1_mastered.mp3" type="audio/mp3">
<p>Your browser doesn't support HTML5 audio. Here is a <a href="media/HouseDrums_take1_mastered.mp3">link to the audio</a> instead.</p>
</audio>
<audio controls>
<source src="media/TremoloSaw_mixdown.mp3" type="audio/mp3">
<p>Your browser doesn't support HTML5 audio. Here is a <a href="media/TremoloSaw_mixdown.mp3">link to the audio</a> instead.</p>
</audio>
<audio controls>
<source src="media/TinySadBells.mp3" type="audio/mp3">
<p>Your browser doesn't support HTML5 audio. Here is a <a href="media/TinySadBells.mp3">link to the audio</a> instead.</p>
</audio>
</div>
<div class="flex-container">
<div class="item">
<img src="media/img_synths.jpg" alt="synths">
</div>
<div class="item">
<img src="media/img_pi.jpg" alt="Raspberry Pi">
</div>
<div class="item">
<a id="video"></a>
<video controls muted autoplay loop src="media/vid_organ.mp4"></video>
</div>
<div class="item">
<img src="media/img_gentrification.jpg" alt="Gentrification">
</div>
<div class="item">
<img src="media/img_synthbear.jpg" alt="Synth bear">
</div>
<div class="item">
<a id="overpass"></a>
<img src="media/img_overpass.jpg" alt="Overpass">
</div>
</div>
<footer>
<a id="contact"></a>
<p>This is footer with some contact information</p>
<img src="media/favicon.png" alt="icon" id="icon">
</footer>
<script src="js/script.js"></script>
</body>
</html>