Postingan

Menampilkan postingan dari Agustus, 2020

TUGAS 2 HTML LANJUTAN XII RPL 1

Gambar
Kamis, 13 Agustus 2020  TUGAS2 HTML LANJUTAN -XII RPL TH 2020 GILANG MARDIANSYAH 1.CODING <!DOCTYPE html> <html>     <head>         <title>Page Title</title>         <link rel="stylesheet" type="text/css" herf="style.css">      </head>     <body>     <h1>HELLO WOLRD</h1>     <h2>GODD MORNING</h2>     <h3>NEVER GIVE UP</h3>     <p>DONT JUDGE A BOOK THIS COVER</p>               </body> </html> body {     background-clip:black; } h1{     color:green; } h2{     color:red;  } h3{     color:blue; } p{     text-align:center;     color:purple; } 2. OUTPUT HELLO WOLRD GOOD MORNING NEVER GIVE UP DONT JUDGE A BOOK THIS COVER

Tugas HTML lanjutan

Gambar
html>      <head>          <title> TODO supply a title </title>          <meta  charset= "UTF-8" >          <meta  name= "viewport" content= "width=device-width,   initial-scale=1.0" >      </head>      <body>                       <a  href= "https://progate.com" > Prograte </a>          <img src= "" >          <h1> HELLO WORD </h1>          <h2> ayo belajar coding </h2>          <h3> pelajaran </h3>        ...