I am currently in the process of developing a flat website for my landlord using the Bootstrap 3 framework. However, I'm facing an issue where my navigation bar is only displaying as an unordered list rather than a horizontal bar. The CSS code can be accessed through this link. I haven't encountered any error messages except for the initial line of CSS code
@import url("https://fonts.googleapis.com/css?family=Lato:400,700,400italic");
, which states "value start only applies to XSL (level 0)."
Here's a snippet of my HTML code:
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>(Apartment name withheld for privacy)</title>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE-edge">
<meta name="viewport" content="width-device-width, initial=scale=1">
<meta name="generator" content="Aptana Studio 3">
<meta name="keywords" content="apartments">
<meta name="description" content="Cheap living">
<meta name="description" content="Affordable apartments">
<link rel="stylesheet" href="bootstrap.css" type="style/css">
<link rel="stylesheet" href="bootstrap-theme.css" type="style/css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"></script>
<script src="https://maxcdn.bootstrap.cdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
</head>
<body>
<nav role="navigation" class="navbar navbar-default">
// Navigation bar content goes here
</nav>
</body>
</html>
I have followed standard practices and even rearranged the order of jQuery and JavaScript linking in my HTML code but haven't been able to resolve the issue. The structure of my navigation bar aligns with what's commonly used in tutorials, yet it refuses to function properly. Can anyone point out where I might have made a mistake?
The appearance of my navigation bar should resemble the design shown below, excluding the search area and button: