I just started studying html, but I can use container and jumbotron, but navbar doesn't display correctly.
Even if I copy directly from bootstrap's NAVS or NAVBAR, the display will be displayed differently from the example on the homepage, so I am having trouble knowing what is wrong at all.
I used udemy as the main learning material, but there were no points to keep in mind in this case.I was at a loss and bought another textbook, but it was the same.
Please let me know if there is anything I need to be careful about when using bootstrap other than the html code.
Thank you for your cooperation.
In the photo, I copied the Tabs code exactly as it is.
<!DOCTYPE html>
<html>
<head>
<metacharset="utf-8">
<title> </title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.3/css/bootstrap.min.css" integrity="sha384-Zug+QiDoJOrZ5t4lsLdxGhVrurbmBWopoEl+M6BdEfwnCJZtKxi1KgxUyJq13dy"crossorigin="anonymous">
</head>
<body>
</body>
</html>
<ul class="nav nav-tabs">
<li role="presentation" class="active"><a href="#">Home</a><li>;
<li role="presentation"><a href="#">Profile</a></li>
<li role="presentation"><a href="#">Messages</a></li>
</ul>
As far as the screenshot shows, you need to learn about html before bootstrap.In particular, you do not seem to have sufficient underlying knowledge of the <html>
tags and the body>
tag role.
For the time being, all content must be written before </body>
.
573 rails db:create error: Could not find mysql2-0.5.4 in any of the sources
584 PHP ssh2_scp_send fails to send files as intended
623 Uncaught (inpromise) Error on Electron: An object could not be cloned
922 When building Fast API+Uvicorn environment with PyInstaller, console=False results in an error
576 Who developed the "avformat-59.dll" that comes with FFmpeg?
© 2024 OneMinuteCode. All rights reserved.