Postingan

Menampilkan postingan dari November, 2022

DESAIN WEB (FLEXBOX Part 1)

Gambar
FLEXBOX  index.html : <! DOCTYPE html > < html lang = "en" >   < head >     < meta charset = "UTF-8" />     < link href = "style.css" rel = "stylesheet" />     < title > The Basic Language of the Web: HTML </ title >   </ head >   < body >     <!--     <h1>The Basic Language of the Web: HTML</h1>     <h2>The Basic Language of the Web: HTML</h2>     <h3>The Basic Language of the Web: HTML</h3>     <h4>The Basic Language of the Web: HTML</h4>     <h5>The Basic Language of the Web: HTML</h5>     <h6>The Basic Language of the Web: HTML</h6>     -->     < div class = "container" >       < header class = "main-header clearfix" >         < h1 > 📘 The Code Magazine ...

DESAIN WEB (LAYOUT CSS)

Gambar
 LAYOUT CSS Position Static <! DOCTYPE html > < html >   < head >     < meta charset = "utf-8" />     < meta http-equiv = "X-UA-Compatible" content = "IE=edge" />     < title > Page Title </ title >     < meta name = "viewport" content = "width=device-width, initial-scale=1" />     < style >       div {         padding : 10px ;       }       .green {         background-color : green ;         position : static ;       }       .red {         background-color : red ;         position : static ;       }       .yellow {         background-color : yellow ;         position : static ;       }     </ ...