-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathskills.html
89 lines (72 loc) · 3.04 KB
/
skills.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
<!--
HTML Static Project
Your name: Daniel Huang
Class: Web Development Period 3 & 4 ODD
Teacher: Iulian Irimina
Date: 9/29/23
-->
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Skills | Daniel Huang</title>
<meta name="author" content="HTML Static Website">
<meta name="description" content="HTML Static Website">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/png" href="images/webDevFavicon.png">
<link href="styles.css" type="text/css" rel="stylesheet">
<link href="normalize.css" type="text/css" rel="stylesheet">
<meta name=“viewport” content=“width-device-width, initial-scale=1, maximum-scale=1”>
<!--Google Font Code--> <!--One HTML comment-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Bahiana&family=Coming+Soon&family=Neucha&family=Zeyada&display=swap" rel="stylesheet">
</head>
<body>
<div class="headerRoot">
<header class="headerTop">
<section class="header">
<a href="https://www.bths.edu/"><img src="images/bthsLogoTransparent.png" id="bthsLogo"/></a> <!--Copyright Symbol (BTHS LOGO)-->
<h1 class="nameOfPage">Skills</h1> <!--Heading #1-->
</section>
</header>
</div>
<nav class="headerNav">
<section class="navSection">
<ul class="navStructure">
<li class="navList">
<a class="navLink" href="index.html"> <span class="navText">Main</span></a>
</li>
<li class="navList">
<a class="navLink" href="favorites.html"><span class="navText">Favorites</span></a>
</li>
<li class="navList">
<a class="navLinkActive" href="skills.html"> <span class="navText">Skills</span></a>
</li>
<li class="navList">
<a class="navLink" href="spots.html"><span class="navText">Spots</span></a>
</li>
</ul>
</section>
</nav>
<main class="mainPageThree">
<header class="mainHeader">
<p id="magicTitle">Magic Teleportation Trick 101</p>
</header>
<div class="mainHeader">
<!--Video File with Controls-->
<video controls autoplay muted id="magicVideo">
<source src="videos/Magic Tutorial - Made with Clipchamp.mp4">
</video>
</div>
<figure id="audioBox">
<figcaption>
Audio for the Magic Video:        
</figcaption>
<!--Audio File with Controls-->
<audio controls src="audio/magic video.m4a">
<a href="audio/magic video.m4a">Download</a>
</audio>
</figure>
</main>
</body>