-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
43 lines (42 loc) · 1.3 KB
/
test.html
File metadata and controls
43 lines (42 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<header>
<title>This is my test!</title>
</header>
<body>
<center>
<!--details and summary tags -->
<section class="dropdown_menu">
<details>
<summary>
Click here to get more information!
</summary>
<p> This right here is a test to see if my dropdown menu works.
I'm getting better at writing syntactcially neat code, so that's
nice as well :) I started on Monday, and today is Sunday at
<time datetime="2022-01-30T01:45">1:45PM </time>
</p>
</details>
</section><br>
<!-- video and audio tags -->
<section>
<video width="320" height="240" controls>
<!--source for file in directory -->
<source = src="" type="">
Looks like yuor browser does not support this video tag
- use Google Chrome!
</video><br>
<!--iframe for links -->
<iframe width="498" height="249" src="https://www.youtube.com/embed/LmA0FtDHlss" title="YouTube video player"
frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</section><br>
<!--bookmarking tag. To use, use an id attribute
and link to the bookmark with a # -->
<h1 id="About Page">About</h1>
<a href="#About Page">Go to About</a>
<section>
</center>
</body>
</html>