-
Notifications
You must be signed in to change notification settings - Fork 99
/
Copy pathiframe.html
26 lines (25 loc) · 995 Bytes
/
iframe.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags -->
<title>Modern Web Apps</title>
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</head>
<body>
<div>
<div style="height:80vh; width:33%; background-color: blue; flex-direction: vertical;float:left">
</div>
<div style="height:80vh; width:33%; background-color: white; flex-direction: vertical;float:left">
</div>
<div style="height:80vh; width:33%; background-color: red; flex-direction: vertical;float:left">
</div>
<div style="width:100%; height:20vh">
<iframe src="https://www.cs.utexas.edu" style="width:100%">
</iframe>
</div>
</div>
</body>
</html>