-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtutorials.html
89 lines (81 loc) · 5.3 KB
/
tutorials.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Newspaper - Tutorials</title>
<!-- Website Stylesheets -->
<link href="styles/style.css" type="text/css" rel="stylesheet">
<link href="styles/fonts.css" type="text/css" rel="stylesheet">
<!-- Font Awesome (https://fontawesome.com/) -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.5.0/css/all.css" integrity="sha384-B4dIYHKNBt8Bc12p+WXckhzcICo0wtJAoU8YZTY5qE0Id1GSseTk6S+L3BlXeVIU" crossorigin="anonymous">
</head>
<body id="top" class="flex">
<!-- Site Header -->
<header class="site-header">
<a class="menu-button" href="index-nav.html"><i class="fas fa-bars"></i></a>
<a class="logo" href="index.html"><img src="images/logo.png" alt="Newspaper Logo"></a>
<div class="search-box">
<i class="fas fa-search"><input type="search" value="Search"></i>
</div>
<a class="search-button" href="index-search.html"><i class="fas fa-search"></i></a>
</header>
<!-- Site Navigation -->
<nav class="site-nav">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="reviews.html">Reviews</a></li>
<li><a href="glossary.html">Glossary</a></li>
<li><a href="jobs.html">Jobs</a></li>
<li><a class="current-page" href="tutorials.html">Tutorials</a></li>
</ul>
</nav>
<!-- Site Main -->
<main class="site-main">
<h2>Tutorials</h2>
<p>On this page, we have provided several hand-picked tutorials relating to various aspects of Web Development, ranging from learning basic HTML syntax and semantics and basic CSS, to learning how to add advanced functionality to a website using JavaScript.</p>
<p>By viewing these tutorials, you should be able to grasp the basics of Web Development in no time!</p>
<!-- Video 1 -->
<figure class="video">
<h3 class="video-heading">HTML Crash Course For Absolute Beginners</h3>
<iframe class="youtube-video" src="https://www.youtube.com/embed/UB1O30fR-EE" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<a class="video-source" href="https://www.youtube.com/watch?v=UB1O30fR-EE" target="_blank">https://www.youtube.com/watch?v=UB1O30fR-EE</a>
</figure>
<!-- Video 2 -->
<figure class="video">
<h3 class="video-heading">CSS Crash Course For Absolute Beginners</h3>
<iframe class="youtube-video" src="https://www.youtube.com/embed/yfoY53QXEnI" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<a class="video-source" href="https://www.youtube.com/watch?v=yfoY53QXEnI" target="_blank">https://www.youtube.com/watch?v=yfoY53QXEnI</a>
</figure>
<!-- Video 3 -->
<figure class="video">
<h3 class="video-heading">JavaScript Fundamentals For Beginners</h3>
<iframe class="youtube-video" src="https://www.youtube.com/embed/vEROU2XtPR8" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<a class="video-source" href="https://www.youtube.com/watch?v=vEROU2XtPR8" target="_blank">https://www.youtube.com/watch?v=vEROU2XtPR8</a>
</figure>
<!-- Video 4 -->
<figure class="video">
<h3 class="video-heading">HTML semantics</h3>
<iframe class="youtube-video" src="https://www.youtube.com/embed/fcZ_dx1rf5U/videoseries?list=PLWjCJDeWfDdc0Sp_DinOWnodw3KnWCwc1" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
<a class="video-source" href="https://www.youtube.com/watch?v=fcZ_dx1rf5U&list=PLWjCJDeWfDdc0Sp_DinOWnodw3KnWCwc1" target="_blank">https://www.youtube.com/watch?v=fcZ_dx1rf5U</a>
</figure>
</main>
<!-- Site Footer -->
<footer class="site-footer">
<p>Copyright © 2018 <a class="name" href="https://darkmetal485.github.io/" target="_blank">Alexander Turner</a></p>
<ul class="social-icons">
<li><a href="https://github.com/UoN-Computing/Turner_18416709" target="_blank"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/alexander-turner-aa8883156/" target="_blank"><i class="fab fa-linkedin"></i></a></li>
<li><a href="https://twitter.com/DarkMetal485" target="_blank"><i class="fab fa-twitter"></i></a></li>
</ul>
<p>
<a href="https://jigsaw.w3.org/css-validator/check/referer">
<img style="border:0;width:88px;height:31px"
src="https://jigsaw.w3.org/css-validator/images/vcss"
alt="Valid CSS!" />
</a>
</p>
<a class="back-to-top" href="#top"><i class="fas fa-arrow-circle-up"></i> Back To Top</a>
</footer>
</body>
</html>