The Software Developer
  • 127.0.0.1
  • IDE-s
  • Tools
  • C#
  • Java
  • Bootstrap
  • Contact me

The architecture of the main site's frame with Bootstrap elements (open-source).


            -- HTML5 Declaration --

                <!DOCTYPE html>


            -- HTML structure declaration with the english language specified --

                <html lang="en">


                -- Head of the page --

                    <head>


                    -- Meta data of the page --

                        <meta charset="utf-8">
                        <meta name="description" content="This website is made for presentation purposes. Bootstrap frame of the web page.">
                        <meta name="keywords" content="bootstrap frame">
                        <meta name="author" content="https://github.com/GaborIreHun">


                    -- Website has to be responsive for Bootstrap --

                        <meta name="viewport" content="width=device-width, initial-scale=1">


                    -- Title of the page --

                        <title>Contact Me</title>


                    -- Mandatory link for bootstrap accessibility --

                        <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
                                                
                    </head>

                - Body of the Page --

                    <body>


                    -- Mandatory script sources for Bootstrap --

                        <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
                        <script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js" integrity="sha384-UO2eT0CpHqdSJQ6hJty5KVphtPhzWj9WO1clHTMGa3JDZwrnQq4sF86dIHNDz0W1" crossorigin="anonymous"></script>
                        <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.min.js" integrity="sha384-JjSmVgyd0p3pXB1rRibZUAYoIIy6OrQ6VrjIEaFf/nJGzIxFDsf4x0xIM+B07jRM" crossorigin="anonymous"></script>
                        

                    -- Navigation bar fixed to the top of the page with hamburger menu --

                        <nav class="navbar navbar-dark bg-dark navbar-expand-lg fixed-top">
                                <a href="index.html" class="navbar-brand">The Software Developer</a>
                                <button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarResponsive" aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation">
                                <span class="navbar-toggler-icon"></span>
                                </button>
                                <div class="collapse navbar-collapse" id="navbarResponsive">
                                    <ul class="navbar-nav ml-auto">
                                        <li class="nav-item active"><a class="nav-link" href="index.html">127.0.0.1</a></li>
                                        <li class="nav-item"><a class="nav-link" href="ide.html">IDE-s</a></li>
                                        <li class="nav-item"><a class="nav-link" href="tools.html">Tools</a></li>
                                        <li class="nav-item"><a class="nav-link" href="c-sharp.html">C#</a></li>
                                        <li class="nav-item"><a class="nav-link" href="java.html">Java</a></li>
                                        <li class="nav-item"><a class="nav-link" href="bootstrap.html">Bootstrap</a></li>
                                        <li class="nav-item"><a class="nav-link" href="contact.html">Contact me</a></li>
                                        <li class="nav-item"><a class="nav-link" href="references.html">References</a></li>
                                    </ul>
                                </div>                
                        </nav>


                        -- Carousel framework -- 

                        <div class="container">
                            <div id="carimages" class="carousel slide" data-ride="carousel">
                                <ol class="carousel-indicators">
                                    <li data-target="carimages" data-slide-to="0" class="active"></li>
                                    <li data-target="carimages" data-slide-to="1"></li>
                                    <li data-target="carimages" data-slide-to="2"></li>
                                    <li data-target="carimages" data-slide-to="3"></li>
                                </ol>
                                <div class="carousel-inner">
                                    <div class="carousel-item active"><img class="img-fluid img-thumbnail" src="images/slide_00.jpg"/></div>
                                    <div class="carousel-item"><img class="img-fluid img-thumbnail" src="images/slide_01.jpg"/></div>
                                    <div class="carousel-item"><img class="img-fluid img-thumbnail" src="images/slide_02.jpg"/></div>
                                    <div class="carousel-item"><img class="img-fluid img-thumbnail" src="images/slide_03.jpg"/></div>
                                </div>
                                <a class="left carousel-control" href="#carimages" data-slide="prev">
                                    <span class="icon-prev"></span>
                                </a>
                                <a class="right carousel-control" href="#carimages" data-slide="next">
                                    <span class="icon-next"></span>
                                </a>
                            </div>
                        </div>


                        -- Image containers below the carousel -- 

                        <div class="container">            
                            <div class="row">
                                
                                <div class="col-lg-4 col-sm-6">
                                    <div class="card">
                                        <a href="c-sharp.html"><img class="card-img-top img-thumbnail" src="images/Csharp.jpg" alt="Home"></a>
                                        <div class="card-body">
                                            <h4 class="card-title text-center">C#</h4>
                                            <p class="card-text"></p>
                                        </div>
                                    </div>                    
                                </div>
                
                                <div class="col-lg-4 col-sm-6">
                                    <div class="card">
                                        <a href="java.html"><img class="card-img-top img-thumbnail" src="images/python.jpg" alt="Home"></a>
                                        <div class="card-body">
                                            <h4 class="card-title text-center">Java</h4>
                                            <p class="card-text"></p>
                                        </div>
                                    </div>                    
                                </div>
                
                                <div class="col-lg-4 col-sm-6">
                                    <div class="card">
                                        <a href="bootstrap.html"><img class="card-img-top img-thumbnail" src="images/hacker-4031973_1920.jpg" alt="Home"></a>
                                        <div class="card-body">
                                            <h4 class="card-title text-center">Bootstrap</h4>
                                            <p class="card-text"></p>
                                        </div>
                                    </div>                    
                                </div>
                
                            </div>
                        </div>

                    
                    -- Footer fixed to the bottom of the page --
                    
                        <footer class="fixed-bottom py-2 bg-dark">
                            <div class="fluid">
                                <p class="m-0 text-center text-white"><a href="https://github.com/GaborIreHun" class="text-center text-white">Author: GaborIreHun - Licence: MIT</a> </p>
                            </div>
                        </footer>

                    </body>
                </html>
            


I hope you can make use of the elements displayed. These can also be found on Bootstrap's website with further details.

Author: GaborIreHun - Licence: MIT