forked from HelenKing029/Basic-web-page
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
76 lines (72 loc) · 1.6 KB
/
index.html
File metadata and controls
76 lines (72 loc) · 1.6 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
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
<!DOCTYPE html>
<html>
<head>
<title>SrVladyslav</title>
<style>
.title {
font-family: 'Charmonman', cursive;
}
.flex {
display: flex;margin-bottom:
}
.enlace {
font-family: 'arial', bold;
}
h1{
text-align:center;
font-size: 8em;
margin: 0;
margin-top: 1em;
margin-bottom: 0;
font-style: bold;
color: red;
}
h1:hover {
font-size: 8.2em;
color: blue;
}
body {
background: url("https://images.pexels.com/photos/36717/amazing-animal-beautiful-beautifull.jpg?auto=compress&cs=tinysrgb&dpr=2&h=750&w=1260");
background-size: cover;
width: 100%;
height: auto;
}
img {
height: 2em;
width: 8em;
}
.input-main {
background-color: white;
border-color: blue;
border-radius: 5px;
}
.submit-btn {
background-color: lightcoral;
border-color: blue;
width: 100px;
height: 24px;
border-radius: 5px;
color: white;
}
</style>
<link href="https://fonts.googleapis.com/css?family=Charmonman" rel="stylesheet">
</head>
<body>
<div>
<h1 class="title">Coding is Awesome!</h1>
</div>
<div>
<center>
<FORM method=GET action="http://www.google.com/search">
<TABLE bgcolor="transparent"><tr><td>
<A HREF=" http://www.google.com/">
<IMG SRC="http://www.stickpng.com/assets/images/580b57fcd9996e24bc43c51f.png" border="0" ALT="Google" align="absmiddle"></A>
<INPUT class="input-main" TYPE=text name=q size=31 maxlength=255 value="">
<INPUT TYPE=hidden name=hl value=es>
<INPUT class="submit-btn" type=submit name=btnG VALUE="Search">
</td></tr></TABLE>
</FORM>
</center>
</div>
</body>
</html>