TUGAS HTML DAN CSS
Nama: Rini nuraeni
Kelas: XII RPL2
1. CODING HTML
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link rel="stylesheet" type="text"/ css" href="style.css">
</head>
<body>
<h1>hello worldn</h1>
<h2>good morning</h2>
<h3>never give up</h3>
<p>dont a book by its cover </p>
</body>
</html>
2. CODING CSS
body {
background-color:white;
}
h1{
color:violet;
}
h2{
color:red;
}
h3{
color:blue;
}
p{
text-align:center ;
color:black;
}
3.Hasil dari coding di atas
Komentar
Posting Komentar