-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpartner.html
112 lines (89 loc) · 2.31 KB
/
partner.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
<!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">
<script src="http://kit.fontawesome.com/24c494a6b6.js" crossorigin="anonymous"></script>
<title>Partner</title>
<style>
body{
margin:0%;
padding: 0%;
}
#navbar{
height:100px;
width:90%;
margin: auto;
display:flex;
}
#navbar>div{
width: 50%;
height:60%;
padding: auto;
}
#first{
display: flex;
justify-content: space-evenly;
padding-top: 15px;
margin:auto;
align-items: center;
font-weight: bold
}
#second{
display: flex;
justify-content: space-evenly;
padding-top: 15px;
margin:auto;
font-weight: bold
}
#first>div{
}
#second>div{
width:20%;
text-align: center;
}
#get{
border-radius: 60px;
text-align: center;
background-color: #0037fd;
}
#first>div:hover{
text-decoration:underline;
color:rgb(47, 1, 211)
}
#second>div:hover{
text-decoration:underline;
color:rgb(47, 1, 211)
}
#get:hover{
background-color: rgb(12, 12, 156);
}
a{
text-decoration: none;
color:white
}
</style>
</head>
<body>
<div id="navbar">
<div id="first" >
<div> <a href="index.html"> <img src="https://www.optimizely.com/globalassets/02.-global-images/navigation/optimizely_logo_navigation.svg" alt="logo"> </a>
</div>
<div> <p>Products</p>
</div>
<div>
<p><a href="prices.html"> Prices</a> </p>
</div>
<div><p>Resources</p></div>
<div> <p>Partners</p></div>
</div>
<div id="second">
<div><p>Support</p> </div>
<div><p><i class="fa-solid fa-magnifying-glass"> </i> Search</p></div>
<div><p><i class="fa-solid fa-user-plus"></i>Login</p></div>
<div id="get"><p id="get">Get Started</p></div>
</div>
</div>
</body>
</html>