forked from LaunchCodeEducation/javascript-projects
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
112 lines (102 loc) · 2.66 KB
/
Copy pathindex.html
File metadata and controls
112 lines (102 loc) · 2.66 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
109
110
111
112
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Practice HTML [My first file]</title>
</head>
<body>
<header>
<!-- put header, nac menu, etc. -->
<h1>Class examples - Basics</h1>
<hr>
</header>
<main>
<!-- All primary content -->
<section>
<h3> Structuring Text</h3>
<p>This is my first paragraph</p>
<p>This is my second paragraph, with <br />
some <br /> line <br /> breaks <br />
</p>
<p>This is my third paragraph</p>
<hr>
</section>
<section>
<h3>Styling Text</h3>
<p>In this paragraph I have some <b>bold</b> text</p>
<p>In this paragraph I have some <em>italicized</em> text</p>
<p>
In this paragraph I have some
<span style="color: blueviolet; text-transform: uppercase;">special</span> text
</p>
<hr>
</section>
<section>
<h3>Lists</h3>
<h4>An Ordered List</h4>
<ol>
<li>One</li>
<li>Three</li>
<li>Two</li>
</ol>
<h4>An Unordered List</h4>
<ul>
<li>One</li>
<li>Three</li>
<li>Two</li>
</ul>
<hr />
</section>
<section>
<H3> Tables </H3>
<table>
<tr>
<th>Col 1</th>
<th>Col 2</th>
<th>Col 3</th>
</tr>
<tr>
<td>X</td>
<td>O</td>
<td>X</td>
</tr>
<tr>
<td>X</td>
<td>O</td>
<td>O</td>
</tr>
<tr>
<td>O</td>
<td>X</td>
<td>O</td>
</tr>
</table>
<hr>
</section>
<section>
<h3>Images</h3>
<img src="https://www.stlmosaicproject.org/cmss_files/attachmentlibrary/launchcode-logo-facebook1-e397a364ce733d0dee2bca438c6c1cf45d4ba9200a28c7b0b0da0e436f0ae44f_2.jpg"
width= "300" alt="LaunchCode Logo">
<hr>
</section>
<section>
<H3>Hyperlinks</H3>
<p>
Visit LaunchCode's
<a href="https://www.launchcode.org/" target="_blank">Website</a>
</p>
<hr>
</section>
</main>
<footer>
<!-- Put copyright, contact etc here -->
<section>
<p>
<small>©2024 Aakash Sachdev
<br>Contact me at aakash@sachdev.com</small>
</p>
</section>
</footer>
</body>
</html>