-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathyoutube.html
More file actions
65 lines (63 loc) · 2.44 KB
/
youtube.html
File metadata and controls
65 lines (63 loc) · 2.44 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
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="utf-8" />
<title>유투브 검색 만들기</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="container">
<header>
<h1>Search <span>Videos</span></h1>
<p>Search all YouTube Videos</p>
<button>Click me!</button>
</header>
<section>
<form id="search-form" method="get" action="">
<div class="fieldcontainer">
<input type="search" id="query" name="query" class="search-field" placeholder="Hello">
<input type="submit" name="search-btn" class="search-btn" value="검색">
</div>
</form>
<ul id="results" class="item-list">
<li class="item">
<a href="http://www.youtube.com/watch?v=e3Nl_TCQXuw" target="_blank">
<h3>Beauty and the Beast – US Official Final Trailer</h3>
<div class="image-wrapper">
<img src="https://i.ytimg.com/vi/e3Nl_TCQXuw/hqdefault.jpg">
</div>
<div class="description">
<small>
By <span class="channel-title">Disney Movie Trailers</span> on
<time>2017-01-31T02:44:39.000Z</time>
</small>
<p>The final trailer for Beauty and the Beast is here On March 17,
rediscover a tale as old as time. </p>
</div>
</a>
</li>
<li class="item">
<a href="http://www.youtube.com/watch?v=e3Nl_TCQXuw" target="_blank">
<h3>Beauty and the Beast – US Official Final Trailer</h3>
<div class="image-wrapper">
<img src="https://i.ytimg.com/vi/e3Nl_TCQXuw/hqdefault.jpg">
</div>
<div class="description">
<small>
By <span class="channel-title">Disney Movie Trailers</span> on
<time>2017-01-31T02:44:39.000Z</time>
</small>
<p>The final trailer for Beauty and the Beast is here On March 17,
rediscover a tale as old as time. </p>
</div>
</a>
</li>
</ul>
</section>
</div>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/2.1.3/jquery.js"></script>
<script src = "youtube-search.js"></script>
</body>
<script src="https://fb.me/react-with-addons-15.1.0.js"></script>
<script src="https://fb.me/react-dom-15.1.0.js"></script>
</html>