Tuesday, November 9, 2021

Simple Pagination

 Simple Pagination

 


<!DOCTYPE html>

<html>

    <head>

        <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

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

         <link rel="STYLESHEET"type="text/css"href="web.css">

        <title>web design</title>

    </head>

    <body>

    <h1>Simple Pagination</h1>

    <div class="pagination">

        <a href="#">&laquo;</a>

        <a href="#">1</a>

        <a href="#">2</a>

        <a href="#">3</a>

        <a href="#">4</a>

        <a href="#">5</a>

        <a href="#">6</a>

        <a href="#">&raquo;</a>



    </div>     

 </body>

</html>


CSS Simple Pagination Style Sheet

.pagination{

    display: inline-block;

}

.pagination a{

    color: #000;

    float: left;

    padding:8px 16px;

    text-decoration: none;

}

No comments:

Post a Comment

JavaScript Animated

  JavaScript Animated <!DOCTYPE html> <html> <style> #myContainer {   width: 400px;   height: 400px;   position: relative;...