-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgallery-photos.html
More file actions
56 lines (48 loc) · 1.71 KB
/
gallery-photos.html
File metadata and controls
56 lines (48 loc) · 1.71 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>The Gallery</title>
<link rel="icon" type="images/x-icon" href="/images/x-icon/xicon.png">
<link rel="stylesheet" href="/css/master.css">
<link rel="stylesheet" href="/css/gallery-css.css">
</head>
<body>
<nav class="navbar background">
<ul class="nav-list">
<li><a href="index.html">Home</a></li>
<li><a href="#">The Gallery</a></li>
<li><a href="about.html">About</a></li>
</ul>
</nav>
<h1 id="title_rounded">The Gallery</h1>
<hr>
<div class="w3-card-4 w3-orange">
<p class="gallery-text">
Here I put together a gallery of a lego model I made using Blender.
More to come.
</p>
</div>
<div class="gallery">
<img src="/images/3dmodel-pics/lego_00.png" alt="Lego 1" width="600"
height="400">
<div class="desc">Fully Textured</div>
</div>
<div class="gallery">
<img src="/images/3dmodel-pics/lego_03.png" alt="Lego 4" width="600"
height="400">
<div class="desc">Fully Textured (Back)</div>
</div>
<div class="gallery">
<img src="/images/3dmodel-pics/lego_01.png" alt="Lego 2" width="600"
height="400">
<div class="desc">Wireframe</div>
</div>
<div class="gallery">
<img src="/images/3dmodel-pics/lego_02.png" alt="Lego 3" width="600"
height="400">
<div class="desc">Wireframe (Back)</div>
</div>
</body>
</html>