-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (46 loc) · 1.48 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Fenix Gallery Site</title>
<link rel="stylesheet" href="style.css">
<style>
body {
background-image: url("images/blackTexture.png");
}
@media only screen and (max-width: 600px) {
.gallery {
grid-template-columns: repeat(1, 1fr);
width: 100%; /* Adjust gallery item width for mobile */
}
}
</style>
<script src="gallery.js"></script>
</head>
<body>
<nav>
<ul>
<li> <a href="#">Home</a></li>
<li><a href="pages/photo.html">Photo</a></li>
<li><a href="pages/lighting.html">Lighting</a></li>
<li><a href="pages/character.html">Character</a></li>
</ul>
</nav>
<video src="videos/boiSkateHome.mp4" autoplay loop class muted="video" style="width: 100%; height: 10%;"></video>
<h1>This site contains works by Eli Fenix. <br> </h1>
<h2>
We explore his photography, lighting in digital environmets, and character design.
</h2>
<nav>
<ul>
<li> <a href="#">Home</a></li>
<li><a href="pages/photo.html">Photo</a></li>
<li><a href="pages/lighting.html">Lighting</a></li>
<li><a href="pages/character.html">Character</a></li>
</ul>
</nav>
<footer>
<p>© 2024 Eli Fenix</p>
</body>
</html>