Skip to content

Instantly share code, notes, and snippets.

View aacassandra's full-sized avatar
🚀
Expand!

Alauddin Afif Cassandra aacassandra

🚀
Expand!
View GitHub Profile
@aacassandra
aacassandra / second.html
Created June 14, 2020 17:19
Belajar HTML: Membuat Iframe (30/33) - part 3
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<h3>Halaman Kedua / Second Page</h3>
</body>
</html>
@aacassandra
aacassandra / first.html
Last active June 14, 2020 17:16
Belajar HTML: Membuat Iframe (30/33) - part 2
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<h3>Halaman Pertama / First Page</h3>
</body>
</html>
@aacassandra
aacassandra / index.html
Last active June 14, 2020 17:14
Belajar HTML: Membuat Iframe (30/33) - part 1
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<h3>Halaman Induk / Parent Page</h3>
<iframe src="first.html" name="ourFrame" width="300" height="300">
You can see me?
</iframe>
@aacassandra
aacassandra / index.html
Created June 14, 2020 07:03
Belajar HTML: Membuat Bidang Kotak atau Fieldbox (29/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<form action="" method="">
<fieldset>
<legend>Form Profile</legend>
<label for="name">Your Name</label>
@aacassandra
aacassandra / index.html
Created May 28, 2020 14:51
Belajar HTML: Membuat Daftar Dropdown (28/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<form action="" method="">
<label for="gender">Please selecr your gender</label>
<select id="gender">
<option value="man">Laki-laki</option>
@aacassandra
aacassandra / index.html
Created May 28, 2020 03:15
Belajar HTML: Membuat Kotak Centang / Checkbox (27/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<form action="" method="">
<h3>Please choose your favorite fruits</h3>
<label for="apple">Apple</label>
<input type="checkbox" id="apple" value="apple">
@aacassandra
aacassandra / index.html
Created May 28, 2020 03:00
Belajar HTML: Membuat Tombol Radio (26/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<form action="" method="">
<label for="man">laki-laki</label>
<input type="radio" name="gender" id="man" value="man">
<label for="woman">perempuan</label>
@aacassandra
aacassandra / index.html
Created May 22, 2020 13:32
Belajar HTML: Membuat Kotak Pilih Warna (25/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<form action="" method="">
<label for="colourForm">Please insert your favorite colour:</label>
<input type="color" name="colourForm" id="colourForm" value="#ffffff">
</form>
@aacassandra
aacassandra / index.html
Created May 22, 2020 11:35
Belajar HTML: Membuat Kotak Upload File (24/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<form action="" method="">
<label for="avatarForm">Please insert your avatar:</label>
<input type="file" name="avatarForm" id="avatarForm">
</form>
@aacassandra
aacassandra / index.html
Created May 19, 2020 21:22
Belajar HTML: Membuat Kotak Angka (23/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<form action="" method="">
<label for="ageForm">Please insert your age:</label>
<input type="number" name="ageForm" id="ageForm" min="0" max="10">
</form>