-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
112 lines (99 loc) · 3.48 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
112
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Google tag (gtag.js) -->
<script
async
src="https://www.googletagmanager.com/gtag/js?id=G-3X7WQRJNLY"
></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() {
dataLayer.push(arguments);
}
gtag("js", new Date());
gtag("config", "G-3X7WQRJNLY");
</script>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="./assets/css/normalize.css" />
<link rel="stylesheet" href="./assets/css/style.css" />
<title>IDS Resources</title>
</head>
<body>
<nav>
<h1>IDS Resources</h1>
</nav>
<!-- Templates & Tools -->
<section class="tools-templates">
<div class="tools">
<h2>Tools</h2>
<div class="container">
<!-- Card: P-tag-generator -->
<a class="card" href="./tools/p-tag-generator/">
<img src="./assets/images/html.jpeg" alt="HTML code" />
<div class="meta-container">
<h3>P-tag-generator</h3>
<p>Wrap text into HTML <p>aragraph tags</p>
</div>
</a>
<!-- Card: Compare HTML & Text -->
<a class="card" href="./tools/compare-html-text/">
<img src="./assets/images/difference.jpeg" alt="light bulbs" style="object-position: center;"/>
<div class="meta-container">
<h3>Compare HTML & Text</h3>
<p>
Compare the differences between the content of your HTML and raw
text
</p>
</div>
</a>
<!-- Card: Minifier -->
<a class="card" href="./tools/minifier/">
<img src="./assets/images/efficiency.jpeg" alt="light bulbs" style="object-position: center;"/>
<div class="meta-container">
<h3>Minifier</h3>
<p>
Minify your HTML, CSS, and JavaScript to improve page loading time
</p>
</div>
</a>
</div>
</div>
<div class="templates">
<h2>Templates</h2>
<div class="container">
<!-- Card: Dynamic Navbar -->
<a class="card" href="./templates/dynamic-navbar/">
<img src="./assets/images/dynamic-nav.jpg" alt="dynamic navbar" />
<div class="meta-container">
<h3>Dynamic Navbar</h3>
</div>
</a>
<!-- Card: Horizontal Scrolling -->
<a class="card" href="./templates/horizontal-gallery/">
<img src="./assets/images/horizontal-gallery.png" alt="horizontal scrolling gallery" />
<div class="meta-container">
<h3>Horizontal Scrolling Gallery</h3>
</div>
</a>
<!-- Card: Content Warning -->
<a class="card" href="./templates/content-warning/">
<img src="./assets/images/content-warning.png" alt="content warning" />
<div class="meta-container">
<h3>Content Warning</h3>
</div>
</a>
<!-- Card: Notepad -->
<a class="card" href="./templates/notepad/">
<img src="./assets/images/notepad.png" alt="notepad" />
<div class="meta-container">
<h3>Notepad</h3>
</div>
</a>
</div>
</div>
</section>
</body>
</html>