- Disini saya menggunakan progam aplikasi Adobe Dreamweaver CS6. Setelah itu
Anda buka Dreamweaver lalu anda membuat file php
- Setelah itu akan muncul Coding seperti di bawah ini :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
</body>
</html>
- Setelah itu ganti nama title seuai keinginan anda . nah di bawah body anda tuliskan seperi ini :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<div id="kotak">
</div><!---kotak-->
</body>
</html>
- Setelah itu anda buat File CSS nya. di File NEW > CSS > OK. maka anda akan tampil :
@charset "utf-8";
/* CSS Document */
- Nah di css inilah anda atur tinggi lebar kotak anda dan posisinya :
contoh :
@charset "utf-8";
/ * CSS Document */
#kotak {
width:1000px;
height:200px;
border:1px solid #000;
background-color: #FC0;
}
- Setelah anda Save As file css nya Anda satukan pada folder php dan anda di :
local c > Xampp > htdocs > dan buat folder di dalam htdocs
Setelah anda buat folder anda masukan file css dan php dengan nama :
index.php dan style.css
setelah itu anda link kan file css dan php dengan script sbb :
<link rel="stylesheet" type="text/css" href="style.css" />
masukan link di dalam head
- Setelah itu anda buka browser dan jalankan : localhost/nama foldernya
berikut hasilnya :
- selesai.
Labels:
ilmukomputer
Thanks for reading Cara Membuat Kotak Di HTML dan CSS . Please share...!
0 Comment for "Cara Membuat Kotak Di HTML dan CSS "