This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang=”en”> | |
<head> | |
<meta charset=”utf-8″> | |
<meta http-equiv=”X-UA-Compatible” content=”IE=edge”> | |
<meta name=”viewport” content=”width=device-width, initial-scale=1″> | |
<title>Ayo Membuat website pemulabelajar.com</title> | |
</head> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.nama_class { | |
color: #333 /* untuk warna teks*/ | |
background-color: #333 /* untuk warna background*/ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="nama_class"> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#nama_id { | |
color: #333 /* untuk warna teks*/ | |
background-color: #333 /* untuk warna background*/ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div id="nama_id"> | |
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a { | |
color: red; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
body{ | |
font-family:"Helvetica Neue",Helvetica,Arial,sans-serif; /*Merubah jenis font yang ada didalam body */ | |
font-size:14px; /*Merubah ukuran font yang ada didalam body */ | |
line-height:1.42857143; /*Merubah jarak enter text yang ada didalam body */ | |
color:#333; /*Merubah warna yang ada didalam body */ | |
background-color:#fff; /*Merubah background body */ | |
margin: 0 auto; /*Menentukan jarak antar body dengan sisi atas dan bawah menjadi 0px dan sisi kiri dan kanan menjadi disesuaikan*/ | |
} | |
/*merubah tag <a href=”#”></a>*/ | |
a { |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Ayo Membuat website Study-newbie.blogspot.com</title> | |
<link href="styles.css" rel="stylesheet"> | |
</head> | |
<body> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="header"> | |
Pemula Belajar | |
</div> | |
<div class="navigasi"> | |
<li><a href="#">Home</a></li> | |
</div> | |
<div class="sidebar"> | |
<p>Ini Sidebar</p> | |
</div> | |
<div class="content"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<title>Ayo Membuat website pemulabelajar.com</title> | |
<link href="styles.css" rel="stylesheet"> | |
</head> | |
<body> |
OlderNewer