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 / index.html
Created May 19, 2020 21:05
Belajar HTML: Membuat Kotak Tanggal (22/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<form action="" method="">
<label for="dateForm">Please insert date:</label>
<input type="date" name="dateForm" id="dateForm">
</form>
@aacassandra
aacassandra / index.html
Last active May 18, 2020 03:13
Belajar HTML: Membuat Kotak Teks Multi-Baris (21/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<form action="" method="">
<label for="email">Email:</label>
<input type="text" name="email" id="email" value="" placeholder="isikan email anda">
<br><br>
@aacassandra
aacassandra / index.html
Created May 16, 2020 18:24
Belajar HTML: Membuat Label (20/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<form action="" method="">
<label for="email">Email:</label>
<input type="text" name="email" id="email" value="" placeholder="isikan email anda">
<br><br>
@aacassandra
aacassandra / index.html
Last active May 16, 2020 16:35
Belajar HTML: Membuat Kotak Tesk (19/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<form action="" method="">
<input type="text" name="email" value="" placeholder="isikan email anda">
<input type="text" name="phone" value="" placeholder="isikan telepon anda">
</form>
@aacassandra
aacassandra / index.html
Created May 14, 2020 21:15
Belajar HTML: Table Merging (18/33) With rowspan
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<table border="1" cellpadding="10">
<tr>
<th>Header 1</th>
<th>Header 2</th>
@aacassandra
aacassandra / index.html
Last active May 14, 2020 21:08
Belajar HTML: Table Merging (18/33) With colspan
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<table border="1" cellpadding="10">
<tr>
<th>Header 1</th>
<th>Header 2</th>
@aacassandra
aacassandra / index.html
Created May 14, 2020 20:59
Belajar HTML: Table Merging (18/33) Wihtout Merging
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<table border="1" cellpadding="10">
<tr>
<th>Header 1</th>
<th>Header 2</th>
@aacassandra
aacassandra / index.html
Created May 12, 2020 23:23
Belajar HTML: Membuat Table
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<h3>Contoh membuat tabel (basic)</h3>
<table border="1" cellpadding="10">
<tr>
<th>No</th>
@aacassandra
aacassandra / index.html
Created May 11, 2020 11:30
Belajar HTML: Menambahkan Audio (16/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<h3>Contoh menambahkan audio di web</h3>
<audio controls>
<source src="./example music.mp3" type="audio/mpeg">
</audio>
@aacassandra
aacassandra / index.html
Created May 9, 2020 20:57
Belajar HTML: Merubah Ukuran Video (15/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<h3>Contoh menambahkan video di web dengan width=750</h3>
<video controls width="750">
<source src="./result.mp4" type="video/mp4">
</video>