-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
60 lines (52 loc) · 1.56 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
<!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">
<link rel="stylesheet" href="Sass/main.css">
<title>Frontend Mentor | Fylo data storage component</title>
</head>
<body>
<main>
<section class="flex-item" id="item-1">
<h2>
<img src="images/logo.svg" alt="Logo">
</h2>
<div class="file-container">
<a href="#">
<img src="images/icon-document.svg" alt="document">
</a>
<a href="#">
<img src="images/icon-folder.svg" alt="folder">
</a>
<a href="#">
<img src="images/icon-upload.svg" alt="upload">
</a>
</div>
</section>
<section class="flex-item" id="item-2">
<div class="dataleft">
<h2>185</h2>
<h6>GB LEFT</h6>
</div>
<div class="description">
You’ve used <b>815 GB</b> of your storage
</div>
<div class="sliderContainer">
<div class="datalabel">
<div class="circle"></div>
</div>
</div>
<div class="data-usage">
<h4>0 GB</h4>
<h4>1000 GB</h4>
</div>
</section>
</main>
<footer>
Challenge by <a href="https://www.frontendmentor.io/profile/GitHub-dev12345" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/GitHub-dev12345">Dev Rathore</a>.
</footer>
</body>
</html>