-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMy Project.html
More file actions
51 lines (50 loc) · 1.63 KB
/
My Project.html
File metadata and controls
51 lines (50 loc) · 1.63 KB
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
<!DOCTYPE html>
<html>
<head>
<b><title>CHEMIpedia</title></b>
<link rel="shortcut icon" type="image/png" href="android-chrome-512x512.png">
<link rel="icon" sizes="192x192" type="image/png" href="android-chrome-192x192.png">
<link rel="apple-touch-icon" type="image/png" href="apple-touch-icon.png">
<style> #myheader {
background-color: dimgray;
color: black;
padding: 5px 5px;
text-align:right;
text-align: start;
}
</style>
<meta name="viewport"
content="width=device-width,initial-scale=1">
<!--Add icon library-->
<link rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awsome/4.7.0/css/font-awsome.min.css">
<style>
.btn {
background-color: blue;
border: none;
color: white;
padding:12px 14px;
font-size: 16px;
cursor: pointer;
}
/*Darker background on mouse-over*/
.btn:hover{
background-color: royalblue;
}
</style>
</head>
<body style="background-color:rgb(132, 173, 154);" >
<h1 id="myheader">
CHEMIpedia
<button class="btn"><i class="fa fa-home"></i>Home</button>
<button class="btn"><i class="fa fa-bars"></i>Menu</button>
<button class="btn"><i class="fa fa-folder"></i>Folder</button>
</h1>
<br> <input type="button" onclick="alert('Are You Sure You Love Me?')" value="Click Me"></br>
<br> <form>
<labal>E-mail:</labal>
<input type="email" name="email">
</form></br>
<br><input type="text" placeholder="🔍 search"></br>
</body>
</html>