Source
Source
DOCTYPE html>
<html>
<head>
</head>
<body>
<header>
</header>
<nav>
<ul>
<li><a href="#topology">Topology</a></li>
<li><a href="#slide">Slide</a></li>
<li><a href="#video">Video</a></li>
<li><a href="#audio">Audio</a></li>
</ul>
</nav>
<section id="topology">
<h2>Topology</h2>
</section>
<section id="slide">
<h2>Slide</h2>
</section>
<section id="video">
<h2>Video</h2>
</video>
</section>
<section id="audio">
<h2>Audio</h2>
<audio controls>
</audio>
</section>
</body>
</html>
Css:
body {
background-color: #e0f0ff;
header {
background-color: #3366cc;
color: white;
padding: 10px;
text-align: center;
nav ul {
list-style-type: none;
padding: 0;
nav ul li {
display: inline;
margin-right: 10px;
nav ul li a {
background-color: #3366cc;
color: white;
padding: 5px;
text-decoration: none;
nav ul li a:hover {
background-color: #6699ff;
section {
margin: 20px 0;
section h2 {
background-color: #3366cc;
color: white;
padding: 5px;
section img {
width: 100%;
height: auto;
margin-bottom: 10px;
video {
width: 100%;
height: auto;
audio {
width: 100%;