-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
72 lines (72 loc) · 3.01 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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>German QWERTZ ISO Keyboard</title>
<link rel="stylesheet" href="styles.css" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Radio+Canada+Big:ital,wght@0,400..700;1,400..700&display=swap" rel="stylesheet">
</head>
<body>
<nav>
<h1>Shorty</h1>
<ul>
<li>
<a href="#tools" class="link-button link-button-primary">Shortcuts</a>
</li>
<li>
<a href="" class="link-button">Say thanks ❤️</a>
</li>
<li>
<a href="" class="link-button">FAQs</a>
</li>
</ul>
</nav>
<header>
<h1 id="hero-title">Find every shortcut<br>for anything.</h1>
<div id="hero-cta">
<h2>Start now with</h2>
<ul id="hero-tools-suggestion">
<li>
<a href="./tools/vim/vim.html"><img src="assets/images/vim.jpeg" class="tool-logo"></a>
</li>
<li>
<a href=""><img src="assets/images/arc.jpeg" class="tool-logo"></a>
</li>
</ul>
</div>
<img src="assets/images/keyboard.png" id="keyboard-img">
</header>
<main>
<section>
<h2>All Tools</h2>
<div id="tools">
<a href="tools/vim/vim.html" class="tool">
<img src="assets/images/vim.jpeg" class="tool-logo">
<div class="tool-info">
<h3 class="tool-name">Vim</h3>
<p class="tool-description">Vim is a highly configurable, text-based editor designed for efficient text editing, commonly used by developers and power users for coding and scripting.</p>
</div>
</a>
<a href="" class="tool">
<img src="assets/images/arc.jpeg" class="tool-logo">
<div class="tool-info">
<h3 class="tool-name">Arc Browser</h3>
<p class="tool-description">Arc Browser is a modern, productivity-focused web browser that reimagines browsing with innovative features like a customizable sidebar, built-in tools, and a design-centric interface.</p>
</div>
</a>
</div>
</section>
<section>
<h2>FAQs</h2>
</section>
</main>
<footer>
<div>
<h2>Footer</h2>
</div>
</footer>
</body>
</html>