Base and footer development asp [closed]

17 hours ago 1
ARTICLE AD BOX
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>{% block title %} FARM {% endblock %}</title> <link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}"> <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-sRIl4kxILFvY47J16cr9ZwB07vP4J8+LH7qKQnuqkuIAvNWLzeN8tE5YBujZqJLB" crossorigin="anonymous"> </head> <body class = "{%block body_class%}{%endblock%}"> <div class="navbar"> <div class="w-100 d-flex justify-content-center"> <img class="logo" src="{{ url_for('static', filename='glh.png') }}" /> </div> <div class="nav_links"> <a href="/">Home</a> <a href="/shop">Shop</a> <a href="/about">About Us</a> {% if session.get('email') %} <a href="/register">Account</a> <a href="{{ url_for('logout') }}" style="color: #178a00; font-weight: bold;">Logout</a> {% else %} <a href="/register">Account</a> {% endif %} </div> </div> <main> {% block content %} {% endblock %} </main> <body> </html>

Is there any difference if I used Bootstrap for my base indication, and didn't use it for footer. All designs I have done in the CSS, so what's the point of using it?

<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> </head> <body> <footer> <div class = "footer"> <ul> <li><a href = "#"> Accessibility </a></li> <li><a href = "#"> TERMS </a></li> <li><a href = "#"> FAQ </a></li> <li><a href = "/contact"> Contact Us</a></li> </ul> </div> </footer> </body> </html>
Read Entire Article