skip to Main Content

Html – Can't get modal to display type and image of Pokemon

HTML: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>My First JS App</title> <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css"> <link rel="stylesheet" type="text/css" href="css/styles.css"> </head> <body> <header class = "page-header"> <img src = "img/PokemonLogo.svg" alt = "Pokemon Logo" class = "logo"> </header>…

VIEW QUESTION

Html – Why isn't padding working in my Bootstrap 5.3 page?

Why is pe-5 not working? <head> <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous"> </head> <body> <header class="bg-info"> <div class="row text-white"> <div class="col-md-6 p-4 pe-5 "> <h2 class="">Adhnan M Y</h2> </div> <div class="col-md-6"> </div> </div> </header> </body>

VIEW QUESTION
Back To Top
Search