-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
111 lines (94 loc) · 5.43 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<meta http-equiv="X-UA-Compatible" content="chrome=1" />
<meta name="description" content="Bean5.github.io : " />
<link rel="stylesheet" type="text/css" media="screen" href="stylesheets/stylesheet.css">
<script src="javascript/jquery-2.0.3.js"></script>
<script type="text/javascript" src="javascript/ga.js"></script>
<title>Ham Tools</title><style>
a {
cursor: pointer;
}
</style>
</head>
<body>
<!-- HEADER -->
<div id="header_wrap" class="outer">
<header class="inner">
<!-- <a id="forkme_banner" href="https://github.com/bean5">View on GitHub</a> -->
<h1 id="project_title">Ham Tools<!-- - KG7IU --></h1>
<h2 id="project_tagline">CQ: All Hams and Prospective Hams</h2>
<!-- <section id="downloads">
<a class="zip_download_link" href="#">Download this project as a .zip file</a>
<a class="tar_download_link" href="#">Download this project as a tar.gz file</a>
</section> -->
</header>
</div>
<!-- MAIN CONTENT -->
<div id="main_content_wrap" class="outer">
<section id="main_content" class="inner">
<p style="font-size:larger">
Welcome to HamTools. The purpose of this site is to furnish some free tools to the public. I want to keep this fun and exciting. Let's start with the basics. Since new sites are coming out every day, it is helpful to keep on top of them.</p>
<ul>
<li><a id="learn">Learn</a>: Because you have to start somewhere.</li>
<li><a id="fun">Have Fun</a>: After you are certified, have fun with your new opportunity. Take advantage of the clubs and networks. Contests, etc. are plentiful. </li>
<!-- <li><a id="network">Network/Communicate</a>: Want to see who has joined the game?</li> -->
<li><a id="volunteer">Volunteer</a>: Because paying forward is a great way to pay back.</li>
<li><a id="recognize">Recognize</a>: Whether it is the <a href="http://www.arrl.org/elmer-award">Elmer</a> that taught you or the new ham that made his/her <a href="http://www.arrl.org/first-contact">first contact</a>, congratulations/recognition is in order!</li>
<li><a id="tools">Other Great Sites</a></li>
</ul>
<div id="Links-Basics">
<h4>Sites to Know About</h4>
<ul>
<li><a class="recognize" href="http://www.arrl.org/elmer-award">http://www.arrl.org/elmer-award</a>: About the Elmer Award</li>
<li><a class="learn" href="https://hamstudy.org/">HamStudy.org</a>: A site that helps you prepare for various ham radio certification exams. It is free, great, well supported, and very popular. I used it myself and passed the exam after using it. Downside: requires a login.</li>
<li><a class="learn" href="http://bean5.github.io/SlickQuizHamRadio/">Ham Radio (SlickQuiz)</a>: Another way to study for the ham radio Technician exam. Doesn't require you to make a login, but it starts at question 0 every time you leave and come back.</li>
<!-- <li><a class="learn" href="#">.org</a>: A great way to learn CW (Morse Code).</li> -->
<li><a class="learn" href="http://www.qsl.net/w5www/qcode.html">http://www.qsl.net/w5www/qcode.html</a>: A site that not only lists Q codes, but also contains other posts by the ham radio operator</a></li>
<!-- <li><a class="learn" href="qcodes.html">Q codes</a>: A great way to learn the Q codes of Ham Radio.</li> --><!-- TODO: Make this page legal -->
<li><a class="fun network" href="http://www.echolink.org">EchoLink.org</a>: A program to install on your computer to help you communicate using a gateway (internet + ham radio).</li>
<li><a class="fun" href="http://www.smileyantenna.com/">www.smileyantenna.com/</a>: A fellow ham radio operator can make a great antenna for you.</li>
<li><a class="fun" href="http://www.arrl.org/files/file/ETP/A%20One%20Hour%20No%20Solder%20CPO%20ver%202_2.pdf">One Hour Project</a>: A One-Hour, No-Solder Code Practice Oscillator.</li>
<li><a class="volunteer learn" href="http://www.arrl.org/">arrl.org</a></li>
<li><a class="tools" href="http://www.arrl.org/first-contact">arrl.org</a>: Order a First Contact Award from ARRL.org</li>
</ul>
</div>
</section>
</div>
<script>
$(function() {
hideAll();
$('#learn').on('click', function() {toggleView('.learn')});
$('#tools').on('click', function() {toggleView('.tools')});
$('#volunteer').on('click', function() {toggleView('.volunteer')});
$('#fun').on('click', function() {toggleView('.fun')});
$('#recognize').on('click', function() {toggleView('.recognize')});
$('#all').on('click', function() {showAll()});
});
function hideAll()
{
$('#Links-Basics').hide();
$('#Links-Basics ul li').hide();
}
function showAll()
{
$('#Links-Basics').show();
$('#Links-Basics ul li').show();
}
function toggleView(tag)
{
hideAll();
$('#Links-Basics').show();
$(tag).parent().show();
}
</script>
<!-- FOOTER -->
<div id="footer_wrap" class="outer">
<footer class="inner">
<p>Published with <a href="http://pages.github.com">GitHub Pages</a></p>
</footer>
</div>
</body>
</html>