-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasic_HTML_1.html
More file actions
34 lines (32 loc) · 848 Bytes
/
Basic_HTML_1.html
File metadata and controls
34 lines (32 loc) · 848 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Javascript Alert</title>
<meta charset="utf-8">
</head>
<body>
<font color="teal">This text is in teal</font>
<p>
<font face=ariel size=6 color="#6B8E23"><b>This</b> <i>text</i> <u>is in olive drab</u></font>
</P>
<img src="https://www.pluggedin.com/wp-content/uploads/2019/12/dude-wheres-my-car-1200x720.jpg"
height=720 Width=1200 Alt="The Homies">
<article>
<h2>Skateboards</h2>
<p>Skateboards are fun.</p>
</article>
<details>
<summary>Some details</summary>
<p>Most skateboard tricks were created by, or are variations of tricks created by Rodney Mullen.</p>
<p>I work from <time>10:00</time> to <time>17:00</time> every weekday.</p>
</details>
</body>
<main>
<script src="Basic_JavaScript_1.js">
</script>
</main>
<footer>
<nav>
</nav>
</footer>
</html>