-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
58 lines (48 loc) · 1.62 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
<html>
<head>
<title>Study Welfare Tutorials</title>
<style>
body {
margin: 0;
font-family: Arial, Helvetica, sans-serif;
}
.logo {
display: inline-block;
vertical-align: top;
margin-right: 20px;
margin-top: 0px;
margin-left: 1137px;
/* if you want it vertically middle of the navbar. */
}
.topnav {
overflow: hidden;
background-color: rgb(127, 188, 241);
}
.topnav a {
float: left;
color: #0f0f0f;
text-align: center;
padding: 20px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #0585cf;
color: rgb(221, 222, 223);
}
.topnav a.active {
background-color: #0585cf;
color: black;
}
</style>
</head>
<body style="background-color:aliceblue">
<div class="topnav">
<img class="logo" src="logo1.jpg" style="width: 60px;">
<a class="active" href="#home">Home</a>
<a href="#news">News</a>
<a href="https://accounts.google.com/b/0/AddMailService" target="_blank">Contact</a>
<a href="#about">About</a>
</div>
</body>
</html>