<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Bootstrap 4 Responsive Layout</title> <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"></script> </head> <body> <nav class="navbar navbar-expand-lg navbar-dark bg-dark"> <div class="container-fluid"> <a href="#" class="navbar-brand">simmanchith</a> <button type="button" class="navbar-toggler" data-bs-toggle="collapse" data-bs-target="#navbarCollapse"> <span class="navbar-toggler-icon"></span> </button> <div class="collapse navbar-collapse" id="navbarCollapse"> <div class="navbar-nav"> <a href="#" class="nav-item nav-link active">Home</a> <a href="#" class="nav-item nav-link">Services</a> <a href="#" class="nav-item nav-link">About</a> <a href="#" class="nav-item nav-link">Contact</a> </div> <div class="navbar-nav ms-auto"> <a href="#" class="nav-item nav-link">Login</a> <a href="#" class="nav-item nav-link">Register</a> </div> </div> </div> </nav> <div class="container"> <div class="p-5 my-4 bg-light rounded-3"> <h1>Learn to Create Websites</h1> <p class="lead">One of most common method of communication with individuals in today's society is through the internet. <a href="https://www.simmanchith.com" class="text-success" target="_blank">simmanchith.com</a> yTo build your own webpage and interact with people across the world, you will master the fundamental website development technology along to practical application samples.ou will learn the essential web development technologies along with real life practice examples, so that you can create your own website to connect with the people around the world.</p> </div> <div class="row g-3"> <div class="col-md-6 col-lg-4 col-xl-3"> <h2>HTML</h2> <p>html 5 programming tutorial HTML stands for Hyper Text Markup Language, and it is the most widely used scripting language for creating web pages on the Internet. This tutorial is designed for beginners and experts</p> </div> <div class="col-md-6 col-lg-4 col-xl-3"> <h2>CSS</h2> <p>CSS is used to describe how web pages are presented. A lot of time and work may be saved via CSS. You may manage the look and feel of your website by learning the fundamentals of the most recent CSS3 with the aid of our CSS courses.</p> </div> <div class="col-md-6 col-lg-4 col-xl-3"> <h2>JavaScript</h2> <p>The most well-known and commonly utilized client-side scripting language is JavaScript. For you to build responsive websites, our JavaScript lessons will give you in-depth understanding of JavaScript, including ES6 capabilities.</p> </div> <div class="col-md-6 col-lg-4 col-xl-3"> <h2>Bootstrap</h2> <p>A potent front-end framework for quicker and simpler website designing is Bootstrap.Our Bootstrap lessons will assist you in mastering all of the most recent Bootstrap 4 framework's capabilities, enabling you to quickly build responsive websites.</p> </div> <div class="col-md-6 col-lg-4 col-xl-3"> <h2>PHP</h2> <p>php programming tutorial PHP is the most widely used web scripting language. Without PHP, Facebook, Yahoo, and Google would not have been able to develop their numerous applications. This tutorial is intended for beginners with or without an experience with PHP.</p> </div> <div class="col-md-6 col-lg-4 col-xl-3"> <h2>SQL</h2> <p>SQL has many built-in functions for performing calculations on different types of data like numbers, text, date and times. We will learn all available functions from most database with its syntax and examples.</p> </div> <div class="col-md-6 col-lg-4 col-xl-3"> <h2>References</h2> <p>All of the standard HTML5 elements and CSS3 attributes are listed in our references section along with other helpful reference like color names and value, characters entities, web-safe fonts, languages code, HTTP messages, and much more.</p> </div> <div class="col-md-6 col-lg-4 col-xl-3"> <h2>FAQ</h2> <p>The Frequently Asked Questions (FAQ) area is a comprehensive database of FAQs that offers practical answers to frequent inquiries and concerns about web design and development along with live demonstrations.</p> </div> </div> <hr> <footer> <div class="row"> <div class="col-md-6"> <p>�simmanchith.com.</p> </div> <div class="col-md-6 text-md-end"> <a href="#" class="text-dark">Terms of Use</a> <span class="text-muted mx-2">|</span> <a href="#" class="text-dark">Privacy Policy</a> </div> </div> </footer> </div> </body> </html>