forked from vexecute/Om
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
147 lines (135 loc) · 4.4 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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="./css/indexstyle.css">
</head>
<header class="header" style="margin-left:-60px;">
<!--style fo header-->
<style>
@import url('https://fonts.googleapis.com/css?family=Montserrat:500');
*{
box-sizing: border-box;
margin: 0;
padding: 0;
background-color: #222222;
}
.li, .a, .button{
font-family: "Montserrat",sans-serif;
font-weight: 500;
font-size: 16px;
color:#aaa;
text-decoration: none;
}
.header{
display:flex;
justify-content: space-between;
align-items: center;
padding: 30px 10%;
}
.logo{
cursor: pointer;
}
.navlink{
list-style: none;
margin-left: 100px;
}
.navlink .li{
display: inline-block;
padding: 0px 20px;
}
.a1 {
overflow: hidden;
position: relative;
display: inline-block;
}
.a1::before,
.a1::after {
content: '';
position: absolute;
width: 100%;
left: 0;
}
.a1::before {
background-color: white;
height: 2px;
bottom: 0;
transform-origin: 100% 50%;
transform: scaleX(0);
transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}
.a1:hover::before {
transform-origin: 0% 50%;
transform: scaleX(1);
}
.a1 {
text-decoration: none;
font-weight: 700;
vertical-align: top;
}
.button{
padding:9px 25px;
background-color: #00ff00;
color:black;
border:none;
border-radius: 50px;
cursor :pointer;
transition:all 0.3s ease 0s;
}
.button:hover{
background-color: white;
}
.container {
display: flex;
align-items: center;
justify-content: center
}
.image {
flex-basis: 5%
}
.text {
font-size: 12px;
padding-left: 10px;
color:#edf0f1;
font-family: "Montserrat",sans-serif;
}
body{
display: flex;
flex-direction: column;
max-width:1240px;
margin:0 auto;
width: 1240px;
height:auto;
}
</style>
<div class="container">
<div class="image">
</div>
<div class="text">
<img src="./img/logo.png" width="300px" height="300px" style="margin-left: -100px;margin-top: -110px;">
</div>
</div>
<nav style="margin-top:-110px">
<ul class="navlink" >
<li class="li"><a class="a a1"href="./index.html">Phone</a></li>
<li class="li"><a class="a a1" href="./html/email.html">Email</a></li>
<li class="li"><a class="a a1" href="./html/username.html">username</a></li>
</ul>
</nav>
</div>
<a class="cta" href="" style="margin-top:-110px"><button class="button">Contact</button></a>
</header>
<body style="font-family:Montserrat;">
<div style="margin-top:-100px">
<center><p class="p1">Reverse Phone Lookup</p></center>
<center><p style="color: white; margin-top: 10px;">If you've ever looked at a phone number on Caller ID and wondered whose number it is, this reverse phone lookup is<br> for you. You may be able to find out the detailed info of the person.</p></center>
<center>
<div class="container" style="margin-top: 40px;">
<form>
<input type="tel" maxlength="10" placeholder="+91" class="searchbar">
<img src="./img/secicon.png" alt="search icon" class="button1">
</form>
</div>
</center>
</div>
</body>
</html>