-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (35 loc) · 1.41 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
<!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">
<title>Fylo data storage component | Frontend Mentor</title>
<link rel="stylesheet" href="./src/style.css">
</head>
<body>
<main>
<div class="top">
<h1><img src="./src/images/logo.svg" alt="Fylo"></h1>
<img class="icon document" src="./src/images/icon-document.svg" alt="Document">
<img class="icon folder" src="./src/images/icon-folder.svg" alt="Folder">
<img class="icon upload" src="./src/images/icon-upload.svg" alt="Upload">
</div>
<div class="bottom">
<p>You’ve used <span class="used">815 GB</span> of your storage</p>
<div class="loading">
<div class="bar"></div>
<div class="bar-data">
<p class="align-left">0 GB</p>
<p class="align-right">1000 GB</p>
</div>
</div>
</div>
<p class="bottom-bottom"><span class="num">185</span> GB Left</p>
</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.frontendmentor.io/profile/Ax-cd">Ax-cd</a>.
</footer>
</body>
</html>