Advertisement
AnindyaBiswas

text

May 17th, 2023
879
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 4.96 KB | None | 0 0
  1. <!doctype html>
  2. <html lang="en">
  3.   <head>
  4.     <meta charset="utf-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6.     <title>Text Page</title>
  7.    
  8.  
  9.  
  10.     <link rel="stylesheet" href="http://localhost:8070/style/style.css">
  11.     <link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
  12.     <script src="https://kit.fontawesome.com/13deb536c6.js" crossorigin="anonymous"></script>
  13. </head>
  14.   <body>
  15.     <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe" crossorigin="anonymous"></script>
  16.  
  17.     <nav class="navbar fixed-top navbar-expand-lg nav-tweak" >
  18.       <div class="container-fluid">
  19.         <a class="navbar-brand" href="/">Router Website</a>
  20.         <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNavDropdown" aria-controls="navbarNavDropdown" aria-expanded="false" aria-label="Toggle navigation">
  21.           <span class="navbar-toggler-icon"></span>
  22.         </button>
  23.         <div class="collapse navbar-collapse justify-content-end" id="navbarNavDropdown" style="align:right">
  24.           <ul class="navbar-nav">
  25.  
  26.             <li class="nav-item">
  27.               <a class="nav-link" href="/AboutUs">About Us</a>
  28.             </li>
  29.             <li class="nav-item">
  30.               <a class="nav-link" href="/Text">Text</a>
  31.             </li>
  32.            
  33.           </ul>
  34.         </div>
  35.       </div>
  36.     </nav>
  37.     <div class="text1">
  38.       <h1 class="vertical-center">Welcome to the Text page</h1>
  39.       <p class="vertical-center">This was made using Bootstrap</p>
  40.     </div>
  41.     <div class="aboutUs2">
  42.        
  43.         <h1 class="vertical-center">This part has the description for the project.</h1>
  44.  
  45.      
  46.     </div>
  47.  
  48.  
  49.       <div class="picture">
  50.         <div class="row mx-0 ">
  51.             <div class="col-lg">
  52.                 <div class="img-container">
  53.                     <img src="http://localhost:8070/images/wp5.jpg" width="100%">
  54.                 </div>  
  55.             </div>
  56.             <div class="col-lg ">
  57.                     <div class="card-text">
  58.                         <h2 >Image description 1</h2>
  59.                         <br>
  60.                         <p>Australian Prime Minister Anthony Albanese said Wednesday a Quad summit would not go ahead in Sydney next week without US President Joe Biden, who postponed his trip to Australia due to debt ceiling negotiations in Washington.</p>
  61.                         <p>Albanese said the leaders of Australia, the United States, India and Japan would instead meet at the G7 in Japan this weekend, after Biden cancelled a trip to Sydney on the second leg of his upcoming Asia trip, which was also to have included a visit to Papua New Guinea.</p>
  62.                     </div>
  63.             </div>
  64.         </div>
  65.       </div>
  66.       <hr style="opacity:5%">
  67.  
  68.       <div class="picture">
  69.         <div class="row mx-0 ">
  70.             <div class="col-lg">
  71.                 <div class="card-text">
  72.                     <h2 >Image description 2</h2>
  73.                     <br>
  74.                     <p>The National Investigation Agency (NIA) Wednesday is conducting searches at 122 locations across six states as part of its crackdown on the alleged nexus between gangsters, drug smugglers, and terrorist groups based in foreign countries, including Pakistan and Canada.
  75.  
  76.                     </p>
  77.                 </div>
  78.             </div>
  79.             <div class="col-lg ">
  80.                 <div class="img-container">
  81.                     <img src="http://localhost:8070/images/wp2.jpg" width="100%">
  82.                 </div>
  83.             </div>
  84.         </div>
  85.       </div>
  86.  
  87.  
  88.       <div class="row mx-0">
  89.         <div class="col-lg px-0">
  90.           <div class="block1">
  91.             <h1 class="vertical-center">
  92.                 <a class="nav-link" href="/AboutUs">About Us <i class="fa-solid fa-arrow-right"></i>
  93.                 </a>
  94.             </h1>
  95.  
  96.           </div>      
  97.         </div>
  98.         <div class="col-lg px-0">
  99.           <div class="block2">
  100.             <h1 class="vertical-center">
  101.               <a class="nav-link" href="/Text">Text <i class="fa-solid fa-arrow-right"></i></a>
  102.             </h1>
  103.           </div>
  104.         </div>
  105.       </div>
  106.  
  107.       <footer class="py-3 my-4">
  108.         <ul class="nav justify-content-center">
  109.           <li class="nav-item"><a href="/" class="nav-link px-2 text-muted">Home</a></li>
  110.           <li class="nav-item"><a href="/AboutUs" class="nav-link px-2 text-muted">About Us</a></li>
  111.           <li class="nav-item"><a href="/Text" class="nav-link px-2 text-muted">Text</a></li>
  112.         </ul>
  113.         <hr>
  114.         <p class="text-center text-muted">© 2023 Router Website by Anindya</p>
  115.       </footer>
  116.  
  117.   </body>
  118. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement