Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Semrush - keyword research tool

Linux Foundation Training and Certification

Teach Your Child To Read

Disclosure: My content contains affiliate links.

32,304 questions

42,479 answers

573 users

How to create basic web page with N columns in localhost with Bootstrap 4

1 Answer

0 votes
<!DOCTYPE html>
<html lang="en">
    <head>
        <title>Bootstrap Example</title>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">
        <link href="http://localhost:8080/css/bootstrap/bootstrap-4.1.3/css/bootstrap.min.css" rel="stylesheet" type="text/css">
    </head>
    <body>

        <div class="jumbotron text-center">
            <h1>Bootstrap Page</h1>
            <p>text text text text </p>
        </div>

        <div class="container">
            <div class="row">
                <div class="col-sm-4">
                    <h3>Column 1</h3>
                    <p>text text text text </p>
                </div>
                <div class="col-sm-4">
                    <h3>Column 2</h3>
                    <p>text text text text </p>
                </div>
                <div class="col-sm-4">
                    <h3>Column 3</h3>
                    <p>text text text text </p>
                </div>
            </div>
        </div>

    </body>
</html>

 



Learn & Practice Python
with the most comprehensive set of 13 hands-on online Python courses
Start now


answered Nov 12, 2018 by avibootz
...