-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
71 lines (49 loc) · 1.63 KB
/
Copy pathindex.html
File metadata and controls
71 lines (49 loc) · 1.63 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frontend Mentor Challenge #3</title>
<link rel="shortcut icon" href="./images/favicon-32x32.png" type="image/x-icon">
<!-- Google Font -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@400;700&display=swap" rel="stylesheet">
<!-- Custom Css -->
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<main class="wrapper">
<div class="grid-layout">
<section class="top-box">
<div class="top-box__logo">
<figure>
<img src="images/logo.svg" alt="Logo de la primera caja">
</figure>
</div>
<div class="top-box__icons">
<figure>
<img src="images/icon-document.svg" alt="Imagen de un documento">
</figure>
<figure>
<img src="images/icon-folder.svg" alt="Imagen de una carpeta">
</figure>
<figure>
<img src="images/icon-upload.svg" alt="Imagen que representa la opción para subir algo a un servidor">
</figure>
</div>
</section>
<section class="bottom-box">
<p class="bottom-box__text">You've used <b>815 GB</b> of your storage</p>
<div class="loading-bar"></div>
<div class="load-counter">
<p><b>0 GB</b></p>
<p><b>1000 GB</b></p>
</div>
<div class="alert">
<p><b>185</b>GB LEFT</p>
</div>
</section>
</div>
</main>
</body>
</html>