-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathart.html
More file actions
72 lines (63 loc) · 2.57 KB
/
Copy pathart.html
File metadata and controls
72 lines (63 loc) · 2.57 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
<!--
Art & Design Landing Page
Author: Josh Lollis
Date: December 3, 2024
CPSC 349 Portfolio Final Project
Landing page showcasing artwork and design project categories
-->
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Standard meta -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Skills | Portfolio</title>
<!-- This style prevents flash of unstyled content (FOUC) -->
<style id="anti-fouc">html{visibility:hidden}</style>
<!-- Inject shared head links (fonts, Font Awesome, tokens, base, desktop/mobile) -->
<script src="/js/head.js"></script>
<!-- Page-specific CSS (if any) -->
<!-- <link rel="stylesheet" href="/css/some-page-only.css"> -->
</head>
<body>
<!-- Header injection point -->
<div id="header-placeholder"></div>
<main>
<div class="content-container">
<h1 class="funnel-display-header">Art & Design</h1>
<!-- TODO: Decide if removing back button-->
<!-- <a href="javascript:history.back()"
class="back-button hover-transform-left">
<span>←</span>
<span>Back</span>
</a> -->
<!-- Project grid layout -->
<div id="projects-grid">
<!-- Artwork section link -->
<div class="project-item hover-transform-up">
<a href="/artwork.html">
<h2>Artwork</h2>
<div class="thumbnail-container">
<img alt="Artwork" class="img-thumbnail"
src="/assets/images/splat.png">
</div>
</a>
</div>
<!-- Design section link -->
<div class="project-item hover-transform-up">
<a href="/design.html">
<h2>Design</h2>
<div class="thumbnail-container">
<img alt="Design" class="img-thumbnail"
src="/assets/images/shoe.png">
</div>
</a>
</div>
</div>
</div>
</main>
<!-- Footer injection point -->
<div id="footer-placeholder"></div>
<script src="/scripts.js"></script>
</body>
</html>