This file contains hidden or 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> | |
<head> | |
<title>sahabatcoding</title> | |
</head> | |
<body> | |
<form action="" method=""> | |
<label for="dateForm">Please insert date:</label> | |
<input type="date" name="dateForm" id="dateForm"> | |
</form> |
This file contains hidden or 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> | |
<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> |
This file contains hidden or 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> | |
<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> |
This file contains hidden or 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> | |
<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> |
This file contains hidden or 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> | |
<head> | |
<title>sahabatcoding</title> | |
</head> | |
<body> | |
<table border="1" cellpadding="10"> | |
<tr> | |
<th>Header 1</th> | |
<th>Header 2</th> |
This file contains hidden or 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> | |
<head> | |
<title>sahabatcoding</title> | |
</head> | |
<body> | |
<table border="1" cellpadding="10"> | |
<tr> | |
<th>Header 1</th> | |
<th>Header 2</th> |
This file contains hidden or 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> | |
<head> | |
<title>sahabatcoding</title> | |
</head> | |
<body> | |
<table border="1" cellpadding="10"> | |
<tr> | |
<th>Header 1</th> | |
<th>Header 2</th> |
This file contains hidden or 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> | |
<head> | |
<title>sahabatcoding</title> | |
</head> | |
<body> | |
<h3>Contoh membuat tabel (basic)</h3> | |
<table border="1" cellpadding="10"> | |
<tr> | |
<th>No</th> |
This file contains hidden or 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> | |
<head> | |
<title>sahabatcoding</title> | |
</head> | |
<body> | |
<h3>Contoh menambahkan audio di web</h3> | |
<audio controls> | |
<source src="./example music.mp3" type="audio/mpeg"> | |
</audio> |
This file contains hidden or 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> | |
<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> |