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 April 10, 2020 15:19
Belajar HTML: Membuat Halaman Web Pertama (2/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
Hello World
</body>
</html>
@aacassandra
aacassandra / index.html
Last active April 10, 2020 15:19
Belajar HTML: Apa itu HTML? (1/33)
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>This is a Heading</h1>
<p>This is a paragraph.</p>
</body>
</html>
@aacassandra
aacassandra / index.html
Created April 11, 2020 03:55
Belajar HTML: Jeda Baris, Spasi dan Koment (3/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
Bani sedang sakit <br>
Dan tidak masuk sekolah<br>
<br>
<br>
@aacassandra
aacassandra / index.html
Created April 11, 2020 07:06
Belajar HTML: Huruf Tebal, Miring & Garis Bawah (4/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<b>Ini huruf tebal</b>
<br>
<i>Ini huruf miring</i>
<br>
@aacassandra
aacassandra / index.html
Created April 11, 2020 13:15
Belajar HTML:Menggunakan Element Sub & Sup (5/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<!-- Superscript -->
4<sup>3</sup>
<br>
<!-- Subscript -->
@aacassandra
aacassandra / index.html
Created April 11, 2020 13:44
Belajar HTML: Membuat Paragraf (6/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<!-- Paragraf -->
<p>Ini adalah contoh paragraf</p>, saya mencoba menambahkan kalimat di sebelah paragraf
<p>paragraf 2</p>
@aacassandra
aacassandra / index.html
Last active May 2, 2020 01:39
Belajar HTML: Membuat Heading (7/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<h1>Ini heading 1</h1>
<h2>Ini heading 2</h2>
<h3>Ini heading 3</h3>
<h4>Ini heading 4</h4>
@aacassandra
aacassandra / index.html
Created May 2, 2020 23:33
Belajar HTML: Membuat List (8/33)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<h3>Contoh ol</h3>
<ol type="i">
<li>Apple</li>
<li>Orange</li>
@aacassandra
aacassandra / index.html
Created May 8, 2020 02:51
Belajar HTML: Membuat Hyperlink (9/33) - (index.html)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<h3>Halaman Home</h3>
<a href="./profile.html">Klik disini untuk pergi ke profile</a>
<h3>Halaman Assets</h3>
@aacassandra
aacassandra / profile.html
Created May 8, 2020 02:51
Belajar HTML: Membuat Hyperlink (9/33) - (profile.html)
<!DOCTYPE html>
<html>
<head>
<title>sahabatcoding</title>
</head>
<body>
<h3>Selamat Datang di Halaman Profile</h3>
<a href="./index.html">Klik disini untuk kembali ke home</a>
</body>
</html>