StudentCodingHUB

Use programming to create innovative things.
  • new post

    Monday, 28 October 2019

    Horizontal Icons menu bar using html and css


    Design 13   Horizontal Icons menu bar 







    <html>
    <head>
     <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
    <style>
    .fontstyle{
    font-size:25px;
    font-weight:bold;
    margin-left:20px;
    color: blue;

    }

    div
    {
    border: 1px solid black;
    padding: 10px;
    width:400px;
    }
    </style>
    </head>
    <body>
    <div> 
    <span class="glyphicon glyphicon-music  fontstyle"></span>
    <span class="glyphicon glyphicon-camera fontstyle"></span>
    <span class="glyphicon glyphicon-envelope fontstyle"></span>
    <span class="glyphicon glyphicon-pencil fontstyle"></span>
    <span class="glyphicon glyphicon-signal fontstyle"></span>
    <span class="glyphicon glyphicon-download-alt fontstyle"></span>
    <span class="glyphicon glyphicon-font fontstyle"></span>

    </div>

    </body>

    </html>

    No comments:

    Post a Comment