Membuat Halaman Web Berita
Tugas Minggu ini adalah membuat halaman web berita sesuai dengan contoh. Berikut adalah implementasinya
Kode HTML:
Copy
<!DOCTYPE html> <html> <head> <title> Fodlan Times </title> <link rel="stylesheet" href="style.css"> </head> <body> <div class="website"> <header> <div class="MainLogo"> <h1>Fodlan Times</h1> </div> <nav> <a href="#">Home</a> <a href="#">About</a> <a href="#">News</a> </nav> </header> <div class="mainBody"> <section class="news"> <div class="articles"> <article> <div class="ar-img"><img src="img/arvis.jpg"></div> <div class="ar-info"> <h3 class="ar-title">Arvis: "I did not kill Sigurd and steal his wife, but even if i did, he deserved it"</h3> <p class="ar-subtitle">After years of being silent on the matter, Emperor Arvis of Grannvale finally broke the ice on the famous Massacre of Belhalla</p> </div> </article> <article> <div class="ar-img"><img src="img/edelgard.jpg"></div> <div class="ar-info"> <h3 class="ar-title">Edelgard: "We are gonna build a wall, and Faerghus is gonna pay for it</h3> <p class="ar-subtitle">Emperor Edelgard I of the Adrestian Emperor reportedly gave the approval to build the Great Wall of Arianrhod. "It's gonna be really special"</p> </div> </article> <article> <div class="ar-img"><img src="img/seliph.jpg"></div> <div class="ar-info"> <h3 class="ar-title">The Leader of the Liberation Army is Reportedly 90 Percent Sure that Julia isn't His Sister.</h3> <p class="ar-subtitle">The relationship of Seliph of Grannvale with his Chief Tactician, Julia, the Princess of Grannvale, has always been a controversial one</p> </div> </article> </div> </section> <section class="categories"> <ul> <li><a href="#">Archanea</a></li> <li><a href="#">Valentia</a></li> <li><a href="#">Jugdral</a></li> <li><a href="#">Elibe</a></li> <li><a href="#">Fodlan</a></li> </ul> </section> </div> </div> <p>Copyright: Gumilang Silalahi @2022</p> </body> </html>
Kode CSS:
Copy
.website { background-color: salmon; } header { position: fixed; width: 100%; height: 4rem; background-color: tomato; padding-top: 4px; padding-left: 4px; padding-bottom: 4px; padding-right: 4px; display: flex; margin: auto; } body { font-family: Arial, Helvetica, sans-serif; color: white; list-style: none; } .MainLogo { width: 25%; align-items: center; color: white; display: flex; background-color: salmon; } *{ margin: 0; text-decoration-line: none; text-decoration-color: currentColor; } .link { text-decoration: none; text-decoration-color: currentColor; } nav{ display: flex; flex: auto; width: 75%; justify-content: space-around; font-size: large; text-align: center; align-items: center; font-size: larger; } .mainBody { width: 100%; display: flex; margin: auto; padding-left: 5rem; padding-top: 5rem; align-self: center; } .news { width: 70%; display: flex; flex-direction: column; } .categories { width: 30%; align-self: right; display: flex; flex-direction: column; font-size: xx-large; } article{ display: flex; } li { list-style: none; } .ar-img { min-width: 350px; height: 200px ; } article { padding-top: 10px; padding-bottom: 10px; }
Screenshot Halaman:
Comments
Post a Comment