-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathemail.html
More file actions
66 lines (60 loc) · 2.2 KB
/
email.html
File metadata and controls
66 lines (60 loc) · 2.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Email Inbox</title>
<link rel="stylesheet" href="emailStyle.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.2/css/all.css" integrity="sha384-oS3vJWv+0UjzBfQzYUhtDYW+Pj2yciDJxpsK1OYPAYjqT085Qq/1cq5FLXAZQ7Ay" crossorigin="anonymous">
</head>
<body>
<!--Images are taken from the original GMail Mailbox google.com this is just a mockup for a school project we do not own the images or the design of this website. Google owns all rights to the design and images.-->
<nav>
<!--<img class="navImg" src="images/nav1.png" alt="">-->
<i class="fas fa-bars fa-2x"></i>
<i class="fas fa-envelope fa-2x"></i>
<h3>Email</h3>
<input placeholder=" Search in Emails"></input>
<img class="navImg" src="images/nav2.png" alt="">
</nav>
<hr>
<section id="iconBar">
<div>
<i class="fas fa-archive"></i>
<i class="fas fa-trash"></i>
<i class="fas fa-envelope-open-text"></i>
<i class="fas fa-clock"></i>
<i class="fas fa-tag"></i>
<i class="fas fa-ellipsis-v"></i>
</div>
<div>
1 or 35
<i class="fas fa-chevron-left"></i>
<i class="fas fa-chevron-right"></i>
<i class="fas fa-cog"></i>
</div>
</section>
<hr>
<section id="mailSection">
<h1>Exchange your points to real money with Spillehjornet!</h1>
<div id="mailHeader">
<h5>Danske Spille via noreply@spillehjornet.dk</h5>
<div>
<p>Mon. June 10, 08:50</p>
<i class="far fa-star"></i>
<i class="fas fa-reply"></i>
<i class="fas fa-ellipsis-v"></i>
</div>
</div>
<hr>
<div id="mailContent">
<h2>Thanks for signing up with your Email!<br><br>Click this link to get your money on Spillehjornet:</h2>
<a href="form_p/form.html">Collect your money now</a>
</div>
<button>REPLY</button>
<button>REPLY ALL</button>
<button>FORWARD</button>
</section>
</body>
</html>