-
Notifications
You must be signed in to change notification settings - Fork 546
Expand file tree
/
Copy path14.Iframes.htm
More file actions
26 lines (26 loc) · 765 Bytes
/
14.Iframes.htm
File metadata and controls
26 lines (26 loc) · 765 Bytes
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
<html>
<body>
<div>
<h2>
Youtube</h2>
<p>
<iframe frameborder="0" height="350" src="https://www.youtube.com/embed/2l_PmSOreGc"
width="425"></iframe>
</p>
<hr />
<h2>
Vimeo</h2>
<p>
<iframe frameborder="0" height="350" src="https://player.vimeo.com/video/41254501"
width="480"></iframe>
</p>
<hr />
<h2>
Not video iframe</h2>
<p>
<iframe frameborder="0" height="350" src="https://example.com"
width="350"></iframe>
</p>
</div>
</body>
</html>