-
Notifications
You must be signed in to change notification settings - Fork 3
/
rd.html
126 lines (103 loc) · 3.03 KB
/
rd.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
<!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>Falcon-R&D</title>
<style>
@import url('https://fonts.googleapis.com/css2?family=Blinker&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Chango&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Staatliches&display=swap');
*{
box-sizing: border-box;
margin: 0;
padding: 0;
color: white;
font-family: 'Blinker',sans-serif;
}
body{
background-image: linear-gradient(to right,#1a233b,black,#1a233b);
width:100%;
color: white;
text-align: center;
}
h1{
font-size: 3em;
padding-top: 5vh;
}
h4{
font-size: 1.6em;
padding-top: 1.7vh;
}
.logo h4{
padding-top:0;
font-size: 1em;
}
#header{
display: flex;
justify-content: space-between;
background-color: #131721;
margin:0;
padding: 0.5em 0;
height: fit-content;
}
.logo{
margin-left: 6%;
font-size: 2.6em;
font-family: sans-serif;
margin-top: 0px;
color: white;
}
.main-navbar{
float:right;
top: 0%;
padding:1px 1px;
margin: 0;
text-align: center;
}
.main-navbar ul{
line-height: 2.5em;
list-style: none;
width: 100%;
}
.main-navbar ul li{
display: inline;
padding-top: 2em;
margin-left:0.5vw;
margin-right:0.5vw;
}
.main-navbar ul li a{
text-decoration: none;
font-family: 'Blinker','Poppins',sans-serif;
font-size: 1em;
padding:5px 1vw ;
min-width: 30px;
color: white;
border-bottom: 0.2em solid white ;
}
.main-navbar ul li a:hover{
color: black;
background-color: white;
border-color: rgb(97, 97, 97);
}
</style>
</head>
<body>
<section id="header"><!--logo on right and navbar right side -->
<div class="logo"> <!--company logo and name on left side-->
<h4 style="align-items: center;justify-content: center;"><video src="logovdo.mp4" width="45" height="35" autoplay muted loop></video> FALCON</h4>
</div>
<div class="main-navbar"> <!--Navbar right aligned-->
<ul>
<li><a href="index.html">HOME</a></li>
<li><a href="gallery.html">GALLERY</a></li>
<li><a href="aboutus.html">ABOUT</a></li>
</ul>
</div>
</section>
<h1>Research and Development</h1>
<h4>This page is under research and development. :) Kindly move back to other pages.</h4>
</body>
</html>