-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
75 lines (67 loc) · 1.85 KB
/
about.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
<!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 active" 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>About JQCode:</h3>
<p></p>
<div>
<p>This site was a learning project for me to learn how to build a website that has working external css and external scripting.</p>
</div>
<p></p>
<div>
<p>I started this project sometime in 2021 and have since been working on it off and on.</p>
<div>
<p>I use this site to test things that I'm learning and to write about things I've learned.</p>
</div>
</div>
<br>
</section>
<section>
<div>
<h3>Thanks:</h3>
<p>Many thanks to all groups and person invlolved in the development of the tools I use on this website including:<br></p>
<ul></ul>
</div>
</section>
<footer>
<p>Copyright 2022 Samuel Sargent, Owner and Developer</p>
</footer>
</body>
</html>