I only have a website with 6 pages, a top navigational panel and a footer. To make it more appealing, I realize that it would be better if I had a right panel where I have pictures with relevant links to the other pages if the reader would like to skip the introduction or home page.
'''<html>
<head>
<title></title>
<style>
body { margin: 0;
font-family: Ariel, Helvetica,sans-serif;}
.topnav { overflow: hidden;
background-color: #333;}
.topnav a { float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;}
.topnav a:hover { background-color: #ddd;
color: black;}
.topnav a:active { background-color: #04AA6D;
color: white;}
.footer { position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: LightGrey;
color: white;
text-align: center;}
</style>
</head>
<body>
<div class = "topnav">
<a class = "active" href = "#home"> Home</a>
<a href = "Photo_Gallery.html"> Photo Gallery</a>
<a href = "Our_Work.html"> Our Work</a>
<a href = "include.html"> Get Involved</a>
<a href = "contacts.html"> Contact Us</a>
<a href = "about.html"> About Us</a>
</div>
<marquee direction = "right" width = "850" hspace = "240px"><h2 align = "center">Welcome to Football Club Barcelona</h2></marquee>
<hr size = "5" color = "purple">
<p align = "center"><img src = "barcalogo.jpeg" align = "center" width = "178px" height = "169px"></p>
<hr size = "3" color = "red">
<h2 style = "color: navy"> Introduction</h2>
<p>Here we bring you one of the most successful multi-sport club on the planet. FC Barcelona have trumpeted the Ueropean scene for over a decade now, and are continuously building on that. In this article we will show you their <b>histroy football</b>, the <b>biggest names</b> that made the most important changes and <b>their style of play</b>.</p>
<p> Now, before we continue, you must know that this club comes a long way. There were seasons where they won nothing. And I mean <i>nothing</i> for a long long time. This article will be an example of one of the greatest defination of staying in the game. The only difference with this defination though, is that these were and are actions.</p>
<h3 style = "color: maroon"> History Football</h3>
<div class = "footer">
<p>We hope you were enthrilled with who we are.</p>
<p> Please proceed to our gallery to view our magical moments. 😍</p>
<a href = "Photo_Gallery.html" align = "right"> Next>> </a>
</div>
</body>`enter code here`
</head>
'''
body {
margin: 0;
font-family: Ariel, Helvetica, sans-serif;
}
.topnav {
overflow: hidden;
background-color: #333;
}
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.topnav a:hover {
background-color: #ddd;
color: black;
}
.topnav a:active {
background-color: #04AA6D;
color: white;
}
.footer {
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: LightGrey;
color: white;
text-align: center;
}
<body>
<div class="topnav">
<a class="active" href="#home"> Home</a>
<a href="Photo_Gallery.html"> Photo Gallery</a>
<a href="Our_Work.html"> Our Work</a>
<a href="include.html"> Get Involved</a>
<a href="contacts.html"> Contact Us</a>
<a href="about.html"> About Us</a>
</div>
<marquee direction="right" width="850" hspace="240px">
<h2 align="center">Welcome to Football Club Barcelona</h2>
</marquee>
<hr size="5" color="purple">
<p align="center"><img src="barcalogo.jpeg" align="center" width="178px" height="169px"></p>
<hr size="3" color="red">
<h2 style="color: navy"> Introduction</h2>
<p>Here we bring you one of the most successful multi-sport club on the planet. FC Barcelona have trumpeted the Ueropean scene for over a decade now, and are continuously building on that. In this article we will show you their <b>histroy football</b>,
the <b>biggest names</b> that made the most important changes and <b>their style of play</b>.</p>
<p> Now, before we continue, you must know that this club comes a long way. There were seasons where they won nothing. And I mean <i>nothing</i> for a long long time. This article will be an example of one of the greatest defination of staying in the game.
The only difference with this defination though, is that these were and are actions.</p>
<h3 style="color: maroon"> History Football</h3>
<div class="footer">
<p>We hope you were enthrilled with who we are.</p>
<p> Please proceed to our gallery to view our magical moments. 😍</p>
<a href="Photo_Gallery.html" align="right"> Next>> </a>
</div>
</body>
`enter code here` `
– Mark Schultheiss Aug 12 '22 at 17:14