-
Notifications
You must be signed in to change notification settings - Fork 0
/
minerva.html
59 lines (59 loc) · 1.56 KB
/
minerva.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Welcome to Minerva Browser</title>
<style>
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background-color: #f0f0f0;
}
.container {
max-width: 800px;
margin: 0 auto;
padding: 20px;
text-align: center;
}
h1 {
color: #333;
}
p {
color: #666;
font-size: 18px;
}
.search-box {
margin-top: 20px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
width: 100%;
max-width: 500px;
font-size: 16px;
}
.search-button {
margin-top: 10px;
background-color: #007bff;
color: #fff;
border: none;
border-radius: 5px;
padding: 10px 20px;
font-size: 16px;
cursor: pointer;
}
</style>
</head>
<body>
<div class="container">
<h1>Welcome to Minerva Browser</h1>
<p>Your intelligent gateway to the web.</p>
<p><div></p>
<form action="https://www.google.com/search" method="GET">
<input type="text" name="q" class="search-box" placeholder="Search the web...">
<button type="submit" class="search-button">Search</button>
</form>
</div>
</body>
</html>