-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathproject_1.html
More file actions
113 lines (103 loc) · 2.59 KB
/
project_1.html
File metadata and controls
113 lines (103 loc) · 2.59 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
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
<html>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes">
<meta charset="utf-8">
<title> Puppy Paws </title>
<head>
<style>
.div_header{
margin: 0 auto;
width: 1050px;
height: 100px;
}
.header_left_element{
float: left;
}
.Logo_heading{
font-size: 50px;
font-weight: 100;
color: purple;
}
.header_right_element{
float: right;
height: 50px;
width: 420px;
border: 1px;
padding: 20px 20px 0 20px;
background: linear-gradient(white, #f4defa);
}
.element_text{
float: left;
padding: 5px;
width: 200px;
font-size: 15px;
margin: 0 15px;
}
.element_search{
float: right;
margin: 0 15px;
font-size: 15px;
}
.div_body{
margin: 0 auto;
margin: 0 auto;
width: 1050px;
height: 1fr;
}
.video_container{
background-color: #cccccc;
background-image: linear-gradient(white, purple);
height: 350px;
width: 560px;
margin: 20px;
padding: 5px;
}
.a1{
margin: 2px;
color: white;
padding: 2px;
background-color: black;
}
.a2{
margin: 2px;
color: white;
padding: 2px;
background-color: black;
}
.a3{
margin: 2px;
color: white;
padding: 2px;
background-color: black;
}
.a4{
margin: 2px;
color: white;
padding: 2px;
background-color: black;
}
</style>
</head>
<body>
<div class="div_header">
<div class="header_left_element">
<h1 id="Logo_heading">Puppy Paws</h1>
</div>
<div class="header_right_element">
<form method="get">
<input type="text" class="element_text">
<input type="submit" value="Find Something !" class="element_search">
</form>
</div>
</div>
<div class= "div_body">
<h2>Top videos</h2>
<div class="video_container">
<a class="a1" href="http://www.youtube.com/embed/W7qWa52k-nE" target="frame1">Video1</a>
<a class="a2" href="http://www.youtube.com/embed/ifXO3U8DxYU" target="frame1">Video2</a>
<a class="a3" href="http://www.youtube.com/embed/BEHD6sCVRPs" target="frame1">Video3</a>
<a class="a4" href="http://www.youtube.com/embed/XAkf4B_Ff3M" target="frame1">Video4</a>
<p><iframe name="frame1" width="560" height="315" src="https://www.youtube.com/embed/BEHD6sCVRPs" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe><p>
</div>
<div>
</body>
</html>