44 lines
836 B
HTML
44 lines
836 B
HTML
<DOCTYPE html>
|
|
|
|
<html>
|
|
<head>
|
|
<title>Dental Center</title>
|
|
<style>
|
|
a li {display: inline; margin-top: 20px; font-size: 150%;padding: 2%; color:white; }
|
|
ul a li:hover{background-color: #66b3ff}
|
|
a {text-decoration: none}
|
|
nav {margin: auto; text-align: center; background-color: #80bfff; box-shadow: 3px 3px 2px 2px; width:85%}
|
|
#banner {margin: auto; height: 60px; padding-bottom: 1%}
|
|
#dental {font-size: 300%; color: #0080ff; font-family: sans-serif}
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<nav>
|
|
<br />
|
|
<ul>
|
|
<a href="index.html"><li>Home</li></a>
|
|
<a href="services.html"><li>Services</li></a>
|
|
<a href="about.html"><li>About</li></a>
|
|
<a href="contact.html"><li>Contact</li></a>
|
|
</ul>
|
|
<h3 id="dental">Dental Center</h3>
|
|
<img id="banner" src="banner.jpg" alt="Pretty banner"/>
|
|
</nav>
|
|
|
|
<div id="main">
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
<footer>
|
|
|
|
|
|
</footer>
|
|
</body>
|
|
|
|
</html>
|