Iframes in HTML
Iframes in HTML
Iframe
An HTML iframe is used to display a web page within a
web page.
</body>
</html>
HTML Layout Elements
HTML has several semantic elements that define the different parts of a web
page
/* Responsive layout - makes the two columns/boxes stack on top of each other instead
of next to each other, on small screens */
@media (max-width: 600px) {
nav, article {
width: 100%;
height: auto;
}
}
</style>