-
Notifications
You must be signed in to change notification settings - Fork 0
/
movies.html
75 lines (66 loc) · 2.75 KB
/
movies.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
63
64
65
66
67
68
69
70
71
72
73
74
75
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Nicolas O | Movies</title>
<link rel="stylesheet" type="text/css" href="assets/css/main.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="shortcut icon" href="assets/img/icons/logo.ico">
</head>
<body>
<div class="header">
<h5>Nicolas Orlandini</h5>
<i class="fa fa-bars" id="menu" style="color: white"></i>
</div>
<div id="mySidenav" class="sidenav">
<a href="javascript:void(0)" id="closeBtn">×</a>
<a href="index.html">Home</a>
<a href="games.html">Games</a>
<a href="webdesign.html">Web Design</a>
<a href="photography.html">Photography</a>
<a href="movies.html">Movies</a>
<a href="assets/top-secret/top-secret-zip.zip" id="secretBtn" download>👀</a>
</div>
<div class="hero-image alt">
<div class="hero-text">
<h1>Movies</h1>
</div>
</div>
<div class="section" id="section-1">
<div class="content col">
<h2>I like to make "movies"</h2>
<p>They're excessively mediocre but I'm proud of them.</p>
</div>
</div>
<div class="section" id="section-2">
<div class="content col">
<h2>My Favorites</h2>
<p></p>
<br>
<p>Actual attempt at a movie:</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/pU8kCVwK0i0" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<p>Messing with Premiere:</p>
<iframe width="560" height="315" src="https://www.youtube.com/embed/ca23W_9ZeHY" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</div>
<div class="section" id="section-3">
<div class="content col">
<h2>My Channel</h2>
<p>Do I get to call myself a youtuber now?</p>
<a href="https://www.youtube.com/channel/UC4hd_y8LYPKy_-0NjIyvmlg" target="_blank" class="button long"><i class="fa fa-youtube-play"></i> Like & subscribe!</a>
</div>
</div>
<div class="footer">
<div class="footer-text">
<h5>©
<script type="text/javascript">
document.write(new Date().getFullYear());
</script>
Nicolas Orlandini</h5>
</div>
</div>
<script src="https://code.jquery.com/jquery-3.2.1.min.js"></script>
<script src="assets/js/main.js"></script>
</body>
</html>