-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
136 lines (99 loc) · 2.68 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Meher Baba</title>
<link rel="stylesheet" type="text/css" href="../CSS/Quote.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<style>
*{box-sizing: border-box;}
<style type="text/css">
html,
body {
margin: 0;
padding: 0;
height: 100%;
}
.topnav a.active {
background-color: #2196F3;
color: white;
}
.topnav .search-container {
float: right;
}
.topnav input[type=text] {
padding: 6px;
margin-top: 8px;
font-size: 15px;
border: none;
}
.topnav .search-container button {
float: right;
padding: 5px 13px;
margin-top: 8px;
margin-right: 16px;
/* background: #ddd;*/
font-size: 17px;
border: 2px solid #c9e6ff;
cursor: pointer;
}
.topnav .search-container button:hover {
background: #ccc;
}
.topnav input[type=text] {
border: 2px solid #c9e6ff;
}
#footer {
position: fixed;
left: 0px;
bottom: 0px;
height: 120px;
width: 100%;
background: #e6caff;
text-align: center;
}
a:link {
color: #3f7bff;
}
a:visited {
color: #3f7bff;
}
a:hover {
color: #3f7bff;
}
a:focus {
color: #3f7bff;
}
a:active {
color: #3f7bff;
}
</style>
</head>
<body>
<div class="topnav">
<div class="search-container">
<form action="/action_page.php">
<input type="text" placeholder="Search.." name="search">
<button type="submit"><i class="fa fa-search"></i></button>
</form>
</div>
</div>
<nav>
<a href="index.html">Home</a> |
<a href="Pages/content.html">Content</a> |
<a href="Pages/image.html">Image Gallery</a> |
<a href="Pages/quote.html">Quote</a> |
<a href="Pages/map.html">Centers</a> |
<a href="Pages/contact.html">Contact Us</a>
</nav>
<h3> Welcome to our website! </h3>
<!- Image display. Used the CSS float property to let the image float to the right -->
<img src="Content/images/Avatar%20Meher%20Baba.jpg" alt="Baba image" style="float:right">
<div id="footer">
<h4> <marquee behavior="alternate" BGCOLOR=White>Thank you for visiting meherbaba.dreamstar.pro </marquee> <h4>
<p> Made With ♥ By <a href="http://dreamstar.pro" target="_blank"><span>Dream Star Pro</span></a>
<p> Open Source Project <a href="https://github.com/DreamStarPro/mWebsite"
target="_blank"><span>click here</span></a></p>
</div>
</body>
</html>