-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (50 loc) · 1.92 KB
/
index.html
File metadata and controls
62 lines (50 loc) · 1.92 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Gmail</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="container">
<header>
<img src="https://upload.wikimedia.org/wikipedia/commons/thumb/a/ab/Gmail_Icon.svg/1280px-Gmail_Icon.svg.png" alt="logo gmail">
<h1>Gmail</h1>
</header>
<nav>
<input type="search" name="search" value="" placeholder="Search">
<input type="submit" name="submit-search" value="VAI">
<div class="orange_circle">
<p id="nav-testo">You have <span id="cerchio">30</span> unread</p>
</div>
</nav>
<main>
<!--caselle di posta-->
<div class="mail-arrived">
<input type="checkbox" name="mail" value="">
<div class="left"><a href="" class="star">★</a> Oggetto della email</div>
<div class="right"> - testo della email...</div>
</div>
<div class="unread">
<input type="checkbox" name="mail" value="">
<div class="left"> <a href="" class="star">★</a> Oggetto della email</div>
<div class="right"> - testo della email...</div>
</div>
<div class="mail-arrived">
<input type="checkbox" name="mail" value="">
<div class="left"> <a href="" class="star">★</a> Oggetto della email</div>
<div class="right"> - testo della email...</div>
</div>
<div class="mail-arrived">
<input type="checkbox" name="mail" value="">
<div class="left"> <a href="" class="star">★</a> Oggetto della email</div>
<div class="right"> - testo della email...</div>
</div>
</main>
<!--/caselle di posta-->
<footer>
<p id="footer-text"><span id="footer-name">GMail</span> powered by Leo</p>
</footer>
</div>
</body>
</html>