-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexhtml.html
150 lines (141 loc) · 4.22 KB
/
exhtml.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/x-icon" href="./icon.png">
<meta charset = "utf-8">
<title>JQCode.net HTML</title>
<script src="./jquery-3.6.0.min.js"></script>
<link id="def" rel="stylesheet" href="default.css">
<link id="stl" rel="stylesheet" href="styles.css">
<script src="./script.js"></script>
</head>
<body>
<nav>
<div class="navbar">
<image class="navimg name" src="./icon.png" alt="JQCode Logo">
<a class="navlink" href="./index.html">Home</a>
<a class="navlink" href="./quiz.html">Topic Quizzes</a>
<a class="navlink" href="./about.html">About</a>
<a class="dropdown">
<a class="navlink dropbtn">Examples and Tutorials</a>
<div class="dropdown-content">
<a href="./exhtml.html">HTML</a>
<a href="./exjs.html">JavaScript</a>
<a href="./excss.html">CSS</a>
<a href="./exjq.html">Jquery</a>
<a href="./expy.html">Python</a>
</div>
</a>
</a>
</div>
</nav>
<header></header>
<aside>
<div>
<p></p>
<a id="idd">🌓 Theme</a>
</div>
</aside>
<section>
<h1>JQCode.net</h1>
<h3>Introduction HTML:</h3>
<p></p>
<div>
<p>HTML uses tags. tags start with a '<' and end with a '>'.<br>
Most tags have a starting tag: <<i>tag_name</i>>,<br>
and an ending tag: </<i>tag_name</i>> notice the slash.</p>
<div class="codep">
<p><span class="tag"><p></span>Hello World<span class="tag"></p></span></p>
</div>
</div>
<p></p>
<div>
<p>More on tags:</p>
<table>
<tr>
<th>TAG</th>
<th>TYPE</th>
<th>SYNTAX</th>
</tr>
<tr>
<td><p></td>
<td>Paragraph</td>
<td>Start-End</td>
</tr>
<tr>
<td><a></td>
<td>Link</td>
<td>Start-End</td>
</tr>
<tr>
<td><i></td>
<td>Italicised</td>
<td>Start-End</td>
</tr>
<tr>
<td><b></td>
<td>Bold</td>
<td>Start-End</td>
</tr>
<tr>
<td><div></td>
<td>Divided Area</td>
<td>Start-End</td>
</tr>
<tr>
<td><img></td>
<td>Image</td>
<td>Start</td>
</tr>
<tr>
<td><hr></td>
<td>Horizontal Rule</td>
<td>Start</td>
</tr>
<tr>
<td><button></td>
<td>Button</td>
<td>Start-End</td>
</tr>
</table>
<p>More Tags <a href="./hex1.html">Here</a></p>
</div>
</section>
<section>
<p></p>
<div>
<p>If at any time you would like to try the code on this site you can use <a href="https://www.onlinegdb.com/" target="blank">GDB Debugger</a> or <a href="https://www.w3schools.com/html/tryit.asp?filename=tryhtml_default" target="blank">W3Schools Tryit Editor</a> or use a text editor. To do that make a new file called 'index.html' and open with your text editor (don't double click, it will open the HTML file in your browser)</p>
</div>
</section>
<section>
<p></p>
<div>
<h3>HTML Syntax Basics</h3>
<p>HTML is a easy language to learn but you need to remember a few important things:</p>
<p>To start making your first page we need to tell the computer what kind of file this is (.html):</p>
<div class="codep">
<p><!<span class="tag">DOCTYPE html</span>></p>
</div>
<p>Then we have to put in some important tags <html>, <head>, and <body></p>
<div class="codep">
<p><!<span class="tag">DOCTYPE html</span>><br>
<<span class="tag">html</span>><br>
<<span class="tag">head</span>><br>
<<span class="tag">title</span>>CodeExample.com<<span class="tag">/title</span>><br>
<<span class="tag">/head</span>><br>
<<span class="tag">body</span>><br>
<<span class="tag">p</span>>This is a paragraph<<span class="tag">/p</span>><br>
<<span class="tag">/body</span>><br>
<<span class="tag">/html</span>></p>
</div>
<p>To see it in action use one the editors above or go <a href="./hex2.html">Here</a></p>
<br><br>
<a href="./htmlquiz.html">HTML Topic Quiz</a>
</div>
</section>
<footer>
<p>Copyright 2022 Samuel Sargent, Owner and Developer</p>
</footer>
</body>
</html>