-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
55 lines (51 loc) · 1.88 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | Fylo data storage component</title>
<link rel="stylesheet" href="./styles/customSheet.css">
</head>
<body>
<main class="main">
<div class="main-fylo main-fylo--operation">
<img src="./images/logo.svg" alt="">
<div class="menu-container">
<button class="menu-container--menu" aria-label="get document">
<img src="./images/icon-document.svg" alt="">
</button>
<button class="menu-container--menu" aria-label="open folder">
<img src="./images/icon-folder.svg" alt="">
</button>
<button class="menu-container--menu" aria-label="upload your file">
<img src="./images/icon-upload.svg" alt="">
</button>
</div>
</div>
<div class="main-fylo main-fylo--display_data">
<h1 class="display_data--text">You’ve used <span>815 GB</span> of your storage</h1>
<div class="progress">
<div class="slider--outer">
<div class="slider">
<span class="toggle"></span>
</div>
</div>
<p class="progressMark">
<span class="initialVal">0 GB</span>
<span class="finalVal">1000 GB</span>
</p>
</div>
<div class="data-left">
<p class="text">185</p>
<p class="text-small">GB LEFT</p>
<span class="pointing-arrow"></span>
</div>
</div>
</main>
<footer class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://www.linkedin.com/in/devaakash/">Aakash Verma</a>.
</footer>
</body>
</html>