-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHTML LearningModule1.html
More file actions
38 lines (38 loc) · 1.18 KB
/
HTML LearningModule1.html
File metadata and controls
38 lines (38 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>My First Page</title>
</head>
<body>
<h1>This is HTML</h1>
<img alt="A picture of a pciture" width="300"
src="E:\MEMES\bocchiyam.png">
<p>
Bruh this is a cringe nae nae baby moment.
<br>SHEEESH
</p>
<h2>BOCCHI THE ROCK:</h2>
<abbr title="Hypertext Markup Language "5"">HTML5</abbr>
<ol>
<li>Dab</li>
<li>I love Bocchi</li>
<li>BOCCHI</li>
</ol>
<ul>
<li>Unorganized list</li>
</ul>
<hr>
<br>
<!--
hr adds a line to the page
br adds a break and makes text start on the next line down
pre adds text as is written in the code
-->
<q>Regular Quote</q>
<blockquote>Blockquoted Text</blockquote>
<p>
Bocchi the rock is very cool <a href="https://www.google.com/search?q=bocchi+the+rock&rlz=1C1VDKB_enUS1038US1038&oq=bocchi&aqs=chrome.0.0i355i433i512j46i433i512j69i57j0i433i512j0i512j69i60l2j69i61.1345j0j7&sourceid=chrome&ie=UTF-8">BOCCHI</a>
</p>
</body>
</html>