-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
39 lines (39 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<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="shortcut icon" type="image/x-icon" href="./images/favicon.ico?">
<title>My Software List</title>
<link rel="stylesheet" href="./styles/home.css">
</head>
<body>
<header class="header">
<h2 class="heading">My Software List</h2>
<hr class="mid-heading">
<h3 class="sub-heading">Install multiple softwares with one command</h3>
</header>
<main class="main">
<form class="package-form">
<div class="input-group">
<input class="commands-txt" type="text" readonly>
<button class="btn all-btn" type="reset">All</button>
<button class="btn copy-btn">Copy</button>
<button class="btn reset-btn" type="reset">Reset</button>
</div>
<div class="list">
<ul class="package-list"></ul>
</div>
</form>
<button class="btn btn--top"><a href="#top" style="color: white">⬆ Jump to Top</a></button>
</main>
<footer class="footer">
<p>View Source: <a href="http://github.com/AzimsTech/MySoftwareList" target="_blank">AzimsTech/MySoftwareList</a></p>
<p> | </p>
<p>Read More: <a href="https://azimstech.github.io/posts/what-is-chocolatey/" target="_blank">What is Chocolatey?</a></p>
</footer>
<script src="./scripts/home.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/js-yaml/4.1.0/js-yaml.min.js"></script>
</body>
</html>