-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGallery.html
49 lines (44 loc) · 1.82 KB
/
Gallery.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
<!DOCTYPE html>
<html>
<head>
<title>Gallery</title>
<meta charset="UTF-8">
<meta lang="en">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="General.css" type="text/css">
</head>
<body>
<header>
<nav>
<ul>
<li><a href="index.html" title="My site's homepage">Home</a></li>
<li><a href="Gallery.html" title="My renders & animations">Gallery</a></li>
</ul>
</nav>
</header>
<h1>Gallery</h1>
<h2>I worked on an animated short film in blender. Here it is:</h2>
<iframe width="560" height="315" src="https://www.youtube.com/embed/7aHBxb9v_CQ" title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen></iframe>
<footer>
<div class="footer-content">
<div class="footer-links">
<a href="https://www.linkedin.com/in/jake-scott-a05234220"> <img
src="https://logospng.org/download/linkedin/logo-linkedin-icon-512.png" height="50" width="50"
alt="LinkedIn Logo" />
</a>
<a href="https://github.com/TheBiggestOfBoys">
<img src="https://www.shareicon.net/data/512x512/2015/10/04/111717_github_512x512.png" height="50"
width="50" alt="GitHub Logo" />
</a>
<a href="https://www.youtube.com/channel/UCVn9bQN71ttD6VNMyRMd0sg">
<img src="https://clipart.info/images/ccovers/1590430652red-youtube-logo-png-xl.png" height="50"
width="65" alt="YouTube Logo" />
</a>
</div>
</div>
</footer>
</body>
</html>