-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (77 loc) · 2.2 KB
/
index.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
<!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</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 to JQCode:</h3>
<p></p>
<div>
<p>See code clearly:</p>
<div class="codep">
<p><span class="tag">var</span> number = <span class="val">1234</span>;<br>
document.getElementById(<span class="val">"p1"</span>).textContent = number;</p>
</div>
</div>
<p></p>
<div>
<p>Learn more about code:</p>
<div>
Javascript is used to perform actions after the page has loaded.<br>
HTML is vital to all web developers of any sort.<br>
CSS is the best way to make your page look good.<br>
Jquery is the easiest way to script webpages.</p>
</div>
</div>
<br>
</section>
<section>
<div>
<h3>Final Word:</h3>
<p>JQCode.net is not only a way to learn code it is a way to express code,<br>
what I mean by that is that I get to put my thoughts into some form of readable material,<br>
but that also means that this site is a learning process for you <i>and</i> me.</p>
<p>But above all:<br>
<h4>Have Fun, Learn Code!</h4></p>
</div>
</section>
<footer>
<p>Copyright 2022 Samuel Sargent, Owner and Developer</p>
</footer>
</body>
</html>