-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTutorials.html
More file actions
108 lines (106 loc) · 3.39 KB
/
Tutorials.html
File metadata and controls
108 lines (106 loc) · 3.39 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
<!-- Creative Yarn Crafts -->
<!-- K0mputer N3rd -->
<!-- 01/16/2022 -->
<!-- Tutorials.html -->
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="Styles\Styles.css" />
<title>Creative Yarn Crafts</title>
<link rel="icon" type="image/x-icon" href="./Media/GS-Icon.ico" />
<!-- Script to enable fontawesome -->
<script
src="https://kit.fontawesome.com/d5fdc24f4a.js"
crossorigin="anonymous"
></script>
<!-- Script for social media links -->
<script>
function social_alert() {
alert(
"Social media links are not yet implemented. Please check again in a few months."
);
}
</script>
</head>
<body>
<nav>
<ul>
<li>
<a style="padding: 1px" href="Gallery.html">
<img
class="logo"
src="Media\Granny Square Letter A.png"
alt="Logo"
/>
</a>
</li>
<li><a href="Home.html">Home</a></li>
<li><a class="active" href="#home">Tutorials</a></li>
<li><a href="Gallery.html">Gallery</a></li>
<li><a href="Current.html">Current</a></li>
<li><a href="About.html">About</a></li>
<li><a href="Contact.html">Contact</a></li>
</ul>
</nav>
<br />
<div class="main">
<h6>Creative Yarn Crafts</h6>
<h1>Tutorials</h1>
<p>
This is my first tutorial video. I still need to add an introduction and
credits to it. I also want to create illustrated PDF and HTML versions of it.
</p>
<hr />
<div style="text-align: center">
<h2>Making a Slip Knot</h2>
<video width="960" height="540" controls>
<source src="Media/Making a Slip Knot.mp4" type="video/mp4" />
Your browser does not support the video tag.
</video>
<p>
There are many ways to make slip knots. This is the way I make them.
You may make them with whatever method works for you.
</p>
</div>
<hr />
<img
class="leftimage2"
src="Media/Under Construction.png"
alt="Under Construction"
/>
<h2>More to Come</h2>
<p>
This is a my first video, and a rough draft at that. I plan to do
another take of this and frame my work better. Opening and closing
credits will also be added.
</p>
<p>
Additional videos will be developed, perhaps a hundred or more. An
account on YouTube will be set up for the videos as well. Videos may be
close-captioned, and subtitles in other languages may be added as well.
</p>
</div>
<footer>
<p>
<a href="#" onclick="social_alert()">
<i class="fab fa-facebook-square fa-2x"></i>
</a>
<a href="#" onclick="social_alert()">
<i class="fab fa-instagram-square fa-2x"></i>
</a>
<a href="#" onclick="social_alert()">
<i class="fab fa-twitter-square fa-2x"></i>
</a>
<a href="#" onclick="social_alert()">
<i class="fab fa-youtube-square fa-2x"></i>
</a>
</p>
<p>
Website Design and Content Copyright © 2022 Creative Yarn Crafts
</p>
</footer>
</body>
</html>