-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHTML-iframes.html
30 lines (30 loc) · 1.05 KB
/
HTML-iframes.html
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
<!DOCTYPE html>
<html>
<head>
<title>HTML Iframes</title>
</head>
<body>
<div>
<h1>Exercise 1</h1>
<p>Create an iframe with URL address that goes to website.</p>
<iframe src="https://gisanddata.maps.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6"></iframe>
</div>
<div>
<h1>Exercise 2</h1>
<p>Use an iframe attribute to make the iframe 500 pixels wide</p>
<iframe src="https://gisanddata.maps.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6" width="500"></iframe>
</div>
<div>
<h1>Exercise 3</h1>
<p>Use CSS to display an iframe with no borders</p>
<iframe src="https://gisanddata.maps.arcgis.com/apps/opsdashboard/index.html#/bda7594740fd40299423467b48e9ecf6" style="border: none;" width="700" height="1000"></iframe>
</div>
<div>
<h1>Exercise 4</h1>
<p>Create an iframe with URL address that goes to "index.html".</p>
<iframe src="index.html"></iframe>
</div>
<a href="index.html">
<h2>Go Back</h2>
</body>
</html>