-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
60 lines (60 loc) · 3.42 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
<!doctype html>
<html>
<head>
<title>Dakota Felder</title>
<link rel="icon" href="Assets/favicon.svg" type="image/x-icon">
<link rel="stylesheet" href="./style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Averia+Serif+Libre:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap" rel="stylesheet">
<script type="module" src="https://ajax.googleapis.com/ajax/libs/model-viewer/3.5.0/model-viewer.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<img class="headerTitle" src="./Assets/signature.svg" alt="Dakota Felder">
<div class="articleContainer" onclick="location.href='./kaomoji-drawer/index.html';">
<a href="./kaomoji-drawer/index.html">Kaomoji Drawer</a>
<p>A macOS menu bar app written in Swift.</p>
<img class="thumbnailImage" src="./Assets/kaomojiThumbnail.png" alt="Kaomoji Drawer">
</div>
<div class="articleContainer" onclick="location.href='./NMS_Table/index.html';">
<a href="./NMS_Table/index.html">No Man's Sky Periodic Table</a>
<p>Based on the popular video game by Hello Games and inspired by The Elements by Theodore Gray.</p>
<video class="thumbnailImage" autoplay loop muted playsinline>
<source src="./Assets/nmsPreview.mp4" type="video/mp4">
</video>
</div>
<div class="articleContainer" onclick="location.href='./KDR/index.html';">
<a href="./KDR/index.html">Keycap Designer Resources</a>
<p>Blender templates made to make 3D renders of keycaps easy. Downloaded over fifteen thousand times.</p>
<video class="thumbnailImage" autoplay loop muted playsinline>
<source src="./Assets/kdrPreview_brightened.mp4" type="video/mp4">
</video>
</div>
<div class="articleContainer" onclick="location.href='./UPM/index.html';">
<a href="./UPM/index.html">Useless Product Mockups</a>
<p>Photoshop mockups of antiquated tech.</p>
<video class="thumbnailImage" autoplay loop muted playsinline>
<source src="./Assets/upmPreview.mp4" type="video/mp4">
</video>
</div>
<div class="articleContainer">
<a href="./nissan-parts/index.html">Nissan Parts</a>
<p>Parts for early 90s Nissan Hardbody's. Just a cupholder for now.</p>
<model-viewer class="thumbnail3D" src="Assets/cupholder.glb" shadow-intensity="1" camera-controls touch-action="pan-y"></model-viewer>
</div>
<div class="shelfContainer">
<div class="shelfOverlay">
<img class="book-overlay-cover" src="${book.coverImage}" alt="${book.title}">
<h2 class="book-title">${book.title}</h2>
<h3 class="book-author">${book.author}</h3>
<p class="book-description">${book.description}</p>
<button class="close-info">Close</button>
</div>
<img class="wholeShelf" src="./Assets/book_covers/shelf.svg">
<div id="book-container" class="book-container"></div>
</div>
<h3>[email protected]</h3>
<script src="script.js"></script>
</body>
</html>