-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
118 lines (92 loc) · 3.34 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
113
114
115
116
117
118
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>FilesMinify</title>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="./assets/css/styles.css">
<link rel="stylesheet" href="https://bootswatch.com/4/darkly/bootstrap.min.css" >
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
<style>.containr{
padding: 5px;
height: 80px;
width: 33%;
display:inline-block;
}
.features{
width: 100%;
margin: 0 auto;
}
</style>
</head>
<body>
<section id="title">
<!-- Nav Bar -->
<nav class="navbar navbar-expand-lg navbar-dark bg-dark">
<a class="navbar-brand text-white href="#" ><span class="text-dark bg-light font-weight-bold logo">Files</span>Minify</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav ml-auto">
<li class="nav-item active ">
<a class="nav-link text-white" href="#">Home <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link text-white" href="#github">Contribute <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item active">
<a class="nav-link text-white" href="#about">About<span class="sr-only">(current)</span></a>
</li>
</ul>
</div>
</nav>
<!-- Title -->
<div class="container">
<h1>Upload<strong> File Here </strong></h1>
<div class="row justify-content-md-center">
<div class="input-group mb-2">
<div class="input-group-prepend">
<span class="input-group-text">Upload</span>
</div>
<div class="custom-file col-6 ">
<input type="file " class="custom-file-input" id="inputGroupFile01">
<label class="custom-file-label" for="inputGroupFile01">Choose file</label>
</div>
</div>
</div>
</div>
</section>
<!-- statistics -->
<h3>File Size</h3>
<h6>Before</h6>
<h6>After</h6>
<!-- Features -->
<section id="features">
<div class="containr">
<h3>Removes Whitespaces.</h3>
<p>Remove unnessary whitespaces make it barely readable</p>
</div>
<div class="containr">
<h3>Removes Comments</h3>
<p>No Comments Please Robots needs commands</p>
</div>
<div class="containr">
<h3>Minimize File Size</h3>
<p>Packs more in less just like we want more for less</p>
</div>
</section>
<!-- Call to Action -->
<section id="cta">
<h3>How Does it works?</h3>
<button type="button">Head Over Here</button>
</section>
<!-- Footer -->
<footer id="footer">
<p>Made with ❤ for DEVS by DEV</p>
<p>© Copyright 2020 FileMinifier</p>
</footer>
</body>
</html>