-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmedia.html
More file actions
167 lines (134 loc) · 5.29 KB
/
media.html
File metadata and controls
167 lines (134 loc) · 5.29 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
<!DOCTYPE html>
<html lang="en">
<head>
<title>Alex Smith's Portfolio</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link rel="stylesheet" href="https://use.typekit.net/sge4hna.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<script src="./script.js"></script>
</head>
<body class="media">
<!-- Header -->
<div class="header">
<div id="myLinks">
<a href="/index.html" class="headerlinks">Home</a>
<a href="/media.html" class="headerlinks">Media</a>
<a href="/about.html" class="headerlinks">About</a>
</div>
<a href="javascript:void(0);" class="icon" onclick="myFunction()">
<i class="fa fa-bars"></i>
</a>
<a href="/files/AlexSmith_Resume.pdf" target="_blank" download="/files/AlexSmith_Resume.pdf" class="resume">RESUME</a>
</div>
<br>
<br>
<br>
<!-- Video Reel -->
<div class="videocontainer">
<iframe style="width:54vw;height:30vw;border-radius:50px;" src="https://www.youtube.com/embed/hR0yGW99JJI?si=jaDob41yMKkdRW-7" title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
</iframe>
</div>
<!-- Cover Video
<div class="videocontainer">
<video class="video" autoplay="autoplay" loop="loop" muted defaultMuted playsinline oncontextmenu="return false;" preload="auto" id="myVideo">
<source src="https://www.youtube.com/embed/hR0yGW99JJI?si=jaDob41yMKkdRW-7"/>
<img src="/images/FirstFrameVideoMainPage.jpg"/>
</video>
</div>-->
<br>
<br>
<!-- Segment -->
<div class="segment" style="margin-top:-6px;"></div>
<br>
<br>
<!-- Media -->
<div class="media-box">
<!-- YouTube -->
<div class="media-left">
<!-- Wedding Reel -->
<div class="media-text text_shadows">
Filmed and edited a family wedding
</div>
<br>
<iframe style="width:32vw; height:18vw; border-radius:30px;" src="https://www.youtube.com/embed/sqDJNf71Q_M" title="YouTube video player" frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen>
</iframe>
<br>
<br>
<br>
<!-- YouTube -->
<div class="media-text text_shadows">
YouTube channel
</div>
<br>
<!-- YouTube Image -->
<div>
<a style="text-decoration:none;" href="https://www.youtube.com/@Riverogames" target="_blank">
<img class="youtube-image" src="/images/YouTube.png" alt="YouTube">
</a>
<!-- Text -->
<a class="youtube-text text_shadows">
I create developer logs, let's plays, skits, parodies, and more!
</a>
</div>
</div>
<!-- Articles -->
<div class="media-right">
<div class="media-text">
<br>
<acumin>Game Articles</acumin>
</div>
<div class="articlegame">
Droplette:
</div>
<a class="articlelinks" href="https://gamesardor.net/droplette-review/" target="_blank">
Games Ardor
</a>
<div class="articlegame">
Ocarina of Time in Minecraft:
</div>
<div>
<a class="articlelinks" href="https://www.zeldadungeon.net/ocarina-of-time-minecraft-remake-complete-after-7-years/?fbclid=IwAR1JWFh_6RGKkZbRHki9QpeZ6nchMgPuls3ae2NjkAdLv7pgYrAlhiNQOtg" target="_blank">
Zelda Dungeon
</a>
</div>
<div>
<a class="articlelinks" href="https://gamerant.com/legend-zelda-ocarina-time-minecraft/" target="_blank">
Game Rant
</a>
</div>
<div>
<a class="articlelinks" href="https://www.gamebyte.com/after-7-years-the-zelda-ocarina-of-time-minecraft-remake-is-nearly-complete/" target="_blank">
Game Byte
</a>
</div>
<div>
<a class="articlelinks" href="https://www.pcgamesn.com/minecraft/zelda-ocarina-of-time-map" target="_blank">
PCGamesN
</a>
</div>
</div>
</div>
<br>
<br>
<br>
<!-- Segment -->
<div class="segment"></div>
<!-- Footer -->
<footer>
<footer-text class="float-left">
© 2024 By Alex Smith
</footer-text>
<footer-text class="float-right">
<a href="/media.html" class="footerlinks">
Back to Top
</a>
</footer-text>
</footer>
<!-- End page content -->
</body>
</html>