Asked by:
I REALLY NEED HELP

Question
-
User-527908287 posted
I recently tried to create a website and make the interface look like the image attached with this message.
I’m trying to make two navigation bars appear HORIZONTALLY and also make content of the navigation bar appear same as the image attached to this message.
BASICALLY, I WANT MY WEBPAGE TO APPEAR JUST AS THE ONES IN THE IMAGES I ATTACHED WITH THIS MESSAGE.
IN THIS SECOND IMAGE I WANT TO CREATE IT AS EXACTLY AS IT APPEARS:
IN THIS THIRD IMAGE, I WANT TO CREATE A NAVIGATION THAT WILL APPEAR ON THE LEFT PANE OF THE SCREEN AS SHOWN HERE
THANK YOU IN ANTICIPATION.
The code I used is:
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <meta charset="utf-8"/> <meta http-equiv="X-UA-Compatible" content="IE=edge"/> <meta name="viewport" content="width=device-width, initial-scale=1"/> <!-- The above 3 meta tags *must* come first in the head; any other head content must come *after* these tags --> <title> PayPower</title> <!-- Bootstrap --> <link href="css/bootstrap.min.css" rel="stylesheet"/> <link href="css/StyleSheet.css" rel="stylesheet" /> <!-- HTML5 shim and Respond.js for IE8 support of HTML5 elements and media queries --> <!-- WARNING: Respond.js doesn't work if you view the page via file:// --> <!--[if lt IE 9]> <script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script> <script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script> <![endif]--> </head> <body style=" background-image:url('images/Dox.png'); overflow-x:hidden;"> <form id="form1" runat="server"> <div> <div class="navbar navbar-default navbar-inverse navbar-fixed-top" role="navigation" style="background-color: orangered; font-family: Nunito; height: 8px;"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse" style="background-color: orangered; color: white; background-;"> <span class="sr-only">Toggle Navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="Homepage.aspx"></a> </div> <div class="navbar-collapse collapse"> <ul class="nav navbar-nav navbar-left"> <li><a href="Homepage.aspx" style="color: #FFFFFF">Home</a></li> <li><a href="#" style="color: #FFFFFF">About Us</a></li> <li><a href="#" style="color: #FFFFFF">Login/Register</a></li> </ul> </div> </div> </div> </div> <div> <div class="navbar" style="background-color: black; font-family: Nunito; height: 8px;"> <div class="container"> <div class="navbar-header"> <button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse" style="background-color: white; color: white; background-;"> <span class="sr-only">Toggle Navigation</span> <span class="icon-bar"></span> <span class="icon-bar"></span> <span class="icon-bar"></span> </button> <a class="navbar-brand" href="Homepage.aspx"></a> </div> <div class="navbar-collapse collapse"> <ul class="nav navbar-nav navbar-right"> <li><a href="Homepage.aspx" style="color: #FFFFFF">Home</a></li> <li><a href="#" style="color: #FFFFFF">About Us</a></li> <li><a href="#" style="color: #FFFFFF">Login/Register</a></li> </ul> </div> </div> </div> </div> </form> <!-- jQuery (necessary for Bootstrap's JavaScript plugins) --> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> <!-- Include all compiled plugins (below), or include individual files as needed --> <script src="js/bootstrap.min.js"></script> </body> </html>
Monday, August 26, 2019 6:35 AM
All replies
-
User409696431 posted
This forum is not a design service. If you want to design a website, you need to know CSS and HTML. If you are using bootstrap, which has its own styles and JavaScript (and you are using it), you need to know that as well. https://getbootstrap.com/docs/4.3/getting-started/introduction/
Monday, August 26, 2019 10:03 PM -
User-719153870 posted
Hi Donald416,
According to your description and the images you provided, i guess you have already downloaded the website pages to your desktop.
Then, you can totally see how this website was built with the UI you want, like the code you provided in your post and i guess it's also came from the files you downloaded.
BASICALLY, I WANT MY WEBPAGE TO APPEAR JUST AS THE ONES IN THE IMAGES I ATTACHED WITH THIS MESSAGE.
For this image, all you want is to build a navigation bar at the top of your page which you have already achieved in the code you provided. If you want to learn more about how to build a navigation bar on your own, there are lots of samples online, like this basic one from w3schools.
IN THIS SECOND IMAGE I WANT TO CREATE IT AS EXACTLY AS IT APPEARS:
This second image is called a login form, alos many examples online, please refer to this link where you can find many kinds of samples.
IN THIS THIRD IMAGE, I WANT TO CREATE A NAVIGATION THAT WILL APPEAR ON THE LEFT PANE OF THE SCREEN AS SHOWN HERE
In the third image, it's called a side bar, please refer to bootstrap-side bar or any other samples or tutorials online.
Hope these can help you.
Best Regard,
Yang Shen
Tuesday, August 27, 2019 6:03 AM