-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
109 lines (105 loc) · 2.81 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
<!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>mimosa connect</title>
<style type="text/css">
*{padding:0; margin: 0;box-sizing: border-box;}
header{
width:100% ;
height: 100vh;
background:linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.2)),url(Touch-Me-Not-Pla.jpg) ;
background-size: cover;
font-family: sans-serif;
}
nav{
width:100%;
height: 100px;
color: white;
display: flex;
justify-content: space-around;
align-items: center;
}
.LOGO{
font-size: 1em;
letter-spacing: 2px;
}
.menu a{
text-decoration: none;
color:white;
padding: 10px 20px;
font-size: 20px;
position: relative;
}
.menu a:before{
content: '';
position: absolute;
top: 0;
left: 0;
width:0%;
height: 100%;
border-bottom: 2px solid indianred;
transition: 0.4s linear;
}
.menu a:hover:before{
width: 90%;
}
.contact a{
text-decoration: none;
color:white;
padding: 10px 20px;
font-size: 20px;
background: indianred;
border-radius: 8px;
transition: 0.4s;
}
.contact a:hover{
background: transparent;
border:1px solid indianred;
}
.h-text{
max-width: 650px;
position:absolute;
top:40%;
left: 50%;
transform: translate(-50%,50%);
text-align: center;
color: white;
}
.h-text span{
letter-spacing:5px ;
}
.h-text h1{
font-size: 3.5em;
}
.h-text h3{
font-style: italic;
}
</style>
</head>
<body>
<header>
<nav>
<div class="LOGO">
EPICMAKERS
</div>
<div class="menu">
<a href="#">Home</a>
<a href="#">About Us</a>
<a href="#">Product</a>
<a href="#">App</a>
</div>
<div class="contact">
<a href="#">Contact Us</a>
</div>
</nav>
<section class="h-text">
<span>INTRODUCING</span>
<H1>MIMOSA CONNECT</H1>
<h3>A SCALLABLE MODEL OF CONECTIVITY & SENSING </h3>
</section>
</header>
</body>
</html>