-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
90 lines (80 loc) · 2.64 KB
/
index.html
File metadata and controls
90 lines (80 loc) · 2.64 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>EPIC Mail | Welcome</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Email Messaging Site">
<meta name="keywords" content="email app, messaging app, instant messaging, epic mail, andela bootcamp cycle 42">
<meta name="author" content="Victor CHINEWUBEZE">
<link rel="stylesheet" type="text/css" media="screen" href="UI/css/styles.css" />
<link rel="shortcut icon" type="image/x-icon" href="UI/img/icon.jpg">
</head>
<body>
<header>
<div class="container">
<div id="appName">
<span class="open-slide">
<a href="#" onclick="openSlideMenu()">
<svg width="30" height="30">
<path d="M0,5 30,5" stroke="#fff" stroke-width="5" />
<path d="M0,14 30,14" stroke="#fff" stroke-width="5" />
<path d="M0,23 30,23" stroke="#fff" stroke-width="5" />
</svg>
</a>
</span>
<h1 id="epic"><a href="index.html"><span class="highlight">EPIC </span>Mail</a></h1>
</div>
<nav>
<ul>
<a href="../index.html">
<li class="current">Home</li>
</a>
<a href="UI/html/about.html">
<li>About</li>
</a>
<a href="UI/html/signin.html">
<li>Sign in</li>
</a>
</ul>
</nav>
</div>
</header>
<div id="headerSpace"></div>
<section id="index-side-bar">
<aside class="side-bar" id="side-bar">
<ul>
<a href="#" class="close-btn" onclick="closeSlideMenu()">×</a>
<a href="#">
<li class="current">Home</li>
</a>
<a href="UI/html/about.html">
<li>About</li>
</a>
<a href="UI/html/signin.html">
<li>Sign in</li>
</a>
</ul>
</aside>
</section>
<section id="welcome">
<div class="container blur">
<h1>Welcome!</h1>
<p class="container">This is the perfect platform for you to get your message across to your family, friends,
loved ones,
work colleagues, etc.</p>
</div>
</section>
<ul class="patternless" id="features">
<li>Create and save message drafts</li>
<li>Instantly message your family and friends</li>
<li>Build a community of people with common goals by creating groups</li>
</ul>
<div class="pb50 container">
<a href="UI/html/signup.html"><button>Sign up for free!</button></a>
</div>
<script src="UI/js/main.js"></script>
<footer>EPIC Mail, Copyright © 2019</footer>
</body>
</html>