-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfirst-animation.html
66 lines (52 loc) · 2.77 KB
/
first-animation.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
<!DOCTYPE html>
<html>
<head>
<title>Elvic Cartoons</title>
<link rel="stylesheet" type="text/css" href="bootstrap.css">
<link rel="stylesheet" type="text/css" href="style.css">
<link rel="icon" href="/images/Elvic-Logo.png">
</head>
<script src="scripts.js"></script>
<body>
<div class="background-container">
<nav class="sub-nav">
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="about.html">ABOUT</a></li>
<li><a href="https://docs.google.com/document/d/1eavNaeYIKanCs7LWMdlWBxmeYH-KdFinB7uLGJQnfLk/edit?usp=sharing">RESUME</a></li>
<li><a href="library.html">ANIMATIONS</a></li>
<li><a href="https://www.youtube.com/channel/UCWDV63envlo4Bu6oRr_FjkA">YOUTUBE</a></li>
<li><a href="https://www.twitch.tv/elviccartoons">TWITCH</a></li>
<li><a href="https://www.patreon.com/ElvicCartoons">PATREON</a></li>
</ul>
</nav>
<div class="container">
<h3>Please watch the following animation and give me your honest feedback :)</h3>
<div class="video-padding">
<iframe width="560" height="315" src="https://www.youtube.com/embed/zWOdewG9w4w"
title="YouTube video player"
frameborder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
allowfullscreen>
</iframe>
</div>
<form class="rating-form">
What did you think? If you could, please rate the cartoon you just watched.<br>
Please rate from 1 to 5 :D<br>
<label>1:<input type='radio' name="firstRating" value='1'></label>
<label>2:<input type='radio' name="firstRating" value='2'></label>
<label>3:<input type='radio' name="firstRating" value='3'></label>
<label>4:<input type='radio' name="firstRating" value='4'></label>
<label>5:<input type='radio' name="firstRating" value='5'></label><br>
<button class="btn btn-success">Send Rating</button>
</form>
<div class="footer-container">
<div class="button-container">
<button class="btn btn-success" onclick="backToTop()">Go to top</button>
</div>
<div class="footer">Copyright 2023</div>
</div>
</div>
</div>
</body>
</html>