MIDTERM* WEB PROG Ex: 9 CSS flexbox and iframe

<!DOCTYPE html>
<html>
<head>
<style>
fieldset
{
background: #32a852;
}
body {background-color: #2a8017;}
}
iframe:focus {
outline: none;
}
iframe[seamless] {
display: block;
}
.navbar {
overflow: hidden;
background-color: #121211;
}
.navbar a {
float: left;
font-size: 16px;
color: #c6ff94;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
.dropdown {
float: left;
overflow: hidden;
}
.dropdown .dropbtn {
font-size: 16px;
border: none;
outline: none;
color:#c6ff94;
padding: 14px 16px;
background-color: inherit;
font-family: inherit;
margin: 0;
}
.navbar a:hover, .dropdown:hover .dropbtn {
background-color: orange;
}
.dropdown-content {
display: none;
position: absolute;
background-color: #f9f9f9;
min-width: 160px;
box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
z-index: 1;
}
.dropdown-content a {
float: none;
color: blue;
padding: 12px 16px;
text-decoration: none;
display: block;
text-align: left;
}
.dropdown-content a:hover {
background-color:orange;
}
.dropdown:hover .dropdown-content {
display: block;
}
footer{
clear:both;
}
*{box-sizing:border-box}
html{background:;}
footer,header{background: #00b4de; color: #fbfbfb; font-family: Arial, "Helvetica Neue", Helvetica, sans-serif; text-align: center; padding: 2em 0;}
</style>
</head>
<body>
<fieldset>
<div class="navbar">
<a href="#home">Home</a>
<div class="dropdown">
<button class="dropbtn">social accounts
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="https://www.facebook.com/darenkate.ojascastro.9/" target="iframe1">Facebook</a>
<a href="https://www.instagram.com/dasfckx/" target="iframe1">Instagram</a>
<a href="https://twitter.com/dasfckx" target="iframe1">E twitter </a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Web Programming
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="https://webbbprog.blogspot.com/2021/04/midtermwebpro-exercise-1-css-color.html" target="iframe1">Exercise 6</a>
<a href="https://webbbprog.blogspot.com/2021/05/3-row-column.html" target="iframe1">Exercise 7</a>
<a href="https://webbbprog.blogspot.com/2021/04/midterm-web-prog-ex-8-sidebar-navigation.html" target="iframe1">Exercise 8</a>
<a href="https://webbbprog.blogspot.com/2021/04/midterm-web-prog-ex-8-sidebar-navigation.html" target="iframe1">Exercise 9</a>
</a>
</div>
</div>
<div class="dropdown">
<button class="dropbtn">Interactive Media
<i class="fa fa-caret-down"></i>
</button>
<div class="dropdown-content">
<a href="https://webbbprog.blogspot.com/2021/04/order-list.html" target="iframe1">Exercise 6</a>
<a href="https://webbbprog.blogspot.com/2021/04/midterm-interactive-ex-7-select-box.html" target="iframe1">Exercise 7</a>
<a href="https://webbbprog.blogspot.com/2021/04/midterm-interactive-ex-8-change-button.html" target="iframe1">Exercise 8 </a>
</div>
</div>
</div>
<div style="padding: 55px 32px;height:3500px; WIDTH="100%">
<h2 id="home"> HOME Fixed Full-height Side Nav</h2>
<iframe name ="iframe1" src="https://webbbprog.blogspot.com/" width="100%" height=600px>
</iframe>
<br>
<br>
<iframe name ="iframe2" src="https://www.bing.com/" noframe width="100%" height=200px> </iframe>
<hr size=10 color=#000>
<br>
<p id="news">News</p>
<img src="https://64.media.tumblr.com/4158076b53dca5726600ea493885b7ac/66e645f0f7b95fae-76/s1280x1920/2d7b1f51a4d0d01110de93fb87b9367fce749dbc.gifv" alt="foo" width= 100% height =550 valign="middle" ></img>
<hr size=10 color=#000>
<img src="https://media1.tenor.com/images/bd15e97fa0954aa451d4d57f866fe210/tenor.gif?itemid=18273132" alt="foo" width= 100% height =500 valign="middle" border="10" ></img>
</div>
<footer>
© 2021 | Adywooooow
</footer>
<br>
</fieldset>
</body>
</html>
Comments
Post a Comment