Posts

Showing posts from November, 2024

Website PPDB dengan PHP - Tugas 10

Image
Website PPDB dengan PHP Source Code:  website-ppdb-tugas-10

Bootstrap

Image
 link :  Klik disini! CSS: /* style.css */ body , html {     margin: 0 ;     padding: 0 ;     width: 100% ;     height: 100% ; } .container-fluid {     padding: 0 ; /* Pastikan tidak ada padding di container-fluid */ } img {     width: 100% ;     height: 100px ;     object-fit: cover; } @media (max-width: 576px ) {     .responsive-img {         height: 200px ;         object-fit: cover;     } } index.html: <! DOCTYPE html > < html lang = "en" >   < head >     < meta charset = "UTF-8" />     < meta name = "viewport" content = "width=device-width, initial-scale=1.0" />     < title >Login Page</ title >     < link       href = "https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css"       rel = "...