-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtools.html
109 lines (109 loc) · 4.77 KB
/
tools.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="google-site-verification" content="UWHTkMxkkqv0hsUJcBHWc3ZjLXysHyydwRcO67gs_tk" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title id="title">Tools | MacTools</title>
<link rel="shortcut icon" href="/logo.png" type="image/x-icon" />
<link rel="stylesheet" href="style.css" />
<script src="global.js"></script>
</head>
<body>
<div class="macsidebar" id="sidebar">
<a href="/"><img src="/logo.png" alt="" /></a>
<a href="/macideas/"><img src="/MacIdeas Logo.png" alt="" /></a>
<a href="/maclearn/"><img src="/MacLearn Logo.png" alt="" /></a>
<a href="/mactools/"><img src="/MacTools Logo.png" alt="" /></a>
<a href="/macvg/"><img src="/MacVG Logo.png" alt="" /></a>
<a href="/macblog/"><img src="/MacBlog Logo.png" alt="" /></a>
</div>
<nav class="nav">
<a href="/mactools/" class="logo">
<img src="/mactools/mactools-logo.png" alt="MacTools Logo" />
</a>
<a href="/mactools/tools.html" class="nav-link">Tools</a>
<div class="tools select help-menu">
<span class="help-label help-menu">Math</span>
<img src="/caret.svg" class="caret help-menu" id="caret" />
<ul id="cats" class="cats help-menu">
<a href="/mactools/math/algebra.html">Algebra</a>
<a href="/mactools/math/converter.html">Converter</a>
<a href="/mactools/math/geometry.html">Geometry</a>
<a href="/mactools/math/sequence.html">Sequence</a>
</ul>
</div>
<div class="tools select help-menu">
<span class="help-label help-menu">Text</span>
<img src="/caret.svg" class="caret help-menu" id="caret" />
<ul id="cats" class="cats help-menu">
<a href="/mactools/text/decoder.html">Decoder</a>
<a href="/mactools/text/encoder.html">Encoder</a>
<a href="/mactools/text/format.html">Formatter</a>
</ul>
</div>
<div class="tools select help-menu">
<span class="help-label help-menu">Time</span>
<img src="/caret.svg" class="caret help-menu" id="caret" />
<ul id="cats" class="cats help-menu">
<a href="/mactools/time/alarm.html">Alarm</a>
<a href="/mactools/time/countdown.html">Countdown</a>
<a href="/mactools/time/stopwatch.html">Stopwatch</a>
<a href="/mactools/time/time.html">Time</a>
<a href="/mactools/time/timer.html">Timer</a>
</ul>
</div>
<div class="right">
<div class="select help-menu">
<span class="help-label help-menu">Help</span>
<img src="/caret.svg" class="caret help-menu" id="caret" />
<ul id="cats" class="cats help-menu">
<a href="/macblog/apps/mactools/">About</a>
<a href="/macblog/updates/mactools/">Updates</a>
<a href="/macblog/apps/mactools/">Docs</a>
<a href="https://forms.gle/dWn2LQ2Bdzn6GaLEA" target="_blank">Feedback</a>
</ul>
</div>
<img src="/profile.svg" class="profile" id="profile" />
</div>
</nav>
<div class="wrap">
<div class="hero">
<h1 class="hero-title">Tools</h1>
<p class="hero-des">
Here are all the major utility categories and the tools in the categories. Browse these categories and find the tool
that suits your need best!
</p>
</div>
<div class="sections">
<div class="section">
<h2 class="section-title">Math Utilities</h2>
<div class="lessons">
<a href="math/algebra.html" class="lesson">Algebra Calculator</a>
<a href="math/geometry.html" class="lesson">Geometry Calculator</a>
<a href="math/sequence.html" class="lesson">Sequences Calculator</a>
<a href="math/converter.html" class="lesson">Unit Converter</a>
</div>
</div>
<div class="section">
<h2 class="section-title">Text Utilities</h2>
<div class="lessons">
<a href="text/decoder.html" class="lesson">Text Cipher Decoder</a>
<a href="text/encoder.html" class="lesson">Text Cipher Encoder</a>
<a href="text/format.html" class="lesson">Text Formatter</a>
</div>
</div>
<div class="section">
<h2 class="section-title">Time</h2>
<div class="lessons">
<a href="time/alarm.html" class="lesson">Alarm</a>
<a href="time/countdown.html" class="lesson">Countdown</a>
<a href="time/stopwatch.html" class="lesson">Stopwatch</a>
<a href="time/timer.html" class="lesson">Timer</a>
<a href="time/time.html" class="lesson">Time</a>
</div>
</div>
</div>
</div>
</body>
</html>