Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
55 commits
Select commit Hold shift + click to select a range
e3d3290
hello world
habibi009 Aug 7, 2022
1ab39f1
html_basic
habibi009 Aug 11, 2022
6719c2f
html_basic
habibi009 Aug 11, 2022
7622bf0
html_elements
habibi009 Aug 11, 2022
9c824b2
html_atribut
habibi009 Aug 11, 2022
cac4c93
html_heading
habibi009 Aug 12, 2022
8930dcb
html_styles
habibi009 Aug 12, 2022
be475f2
html_format
habibi009 Aug 12, 2022
675df71
html_quotes
habibi009 Aug 12, 2022
e6424d0
html_comments
habibi009 Aug 13, 2022
0cd9050
html_css
habibi009 Aug 13, 2022
3433e96
html_colors
habibi009 Aug 13, 2022
5c84302
html_link
habibi009 Aug 13, 2022
8136c83
Merge branch 'habibi' of https://github.com/pasaman-dev/programming-c…
habibi009 Aug 13, 2022
3ad3004
html_images
habibi009 Aug 16, 2022
481306a
html_favicon
habibi009 Aug 16, 2022
8ecf557
html_tables
habibi009 Aug 16, 2022
20e1e8c
html_lists
habibi009 Aug 16, 2022
03de22c
html_unordered
habibi009 Aug 16, 2022
0a5f278
html_ordered
habibi009 Aug 16, 2022
a8f9e98
html_class
habibi009 Aug 17, 2022
202fcfc
html_block
habibi009 Aug 17, 2022
a38c1df
html_id
habibi009 Aug 17, 2022
94ea39f
html_iframe
habibi009 Aug 19, 2022
cd3b080
html_javascript
habibi009 Aug 19, 2022
04e57e1
html_filePath
habibi009 Aug 19, 2022
c139e51
html_head
habibi009 Aug 19, 2022
4b1491b
html_layout
habibi009 Aug 20, 2022
4a73f3b
html_responsive
habibi009 Aug 20, 2022
825cc08
html_computercode
habibi009 Aug 20, 2022
8ecabc5
tes
habibi009 Aug 23, 2022
0876b46
landing-page
habibi009 Aug 23, 2022
4b28403
html_semantics
habibi009 Aug 24, 2022
2162131
css_home
habibi009 Aug 24, 2022
732d323
css_intro
habibi009 Aug 24, 2022
e6e2d3a
css_syntax
habibi009 Aug 24, 2022
59aae6a
css_select
habibi009 Aug 24, 2022
b9aa7e7
css_howTo
habibi009 Aug 25, 2022
e20f9d3
css_komen
habibi009 Aug 25, 2022
3073771
css_color
habibi009 Aug 25, 2022
49a483b
css_background
habibi009 Aug 26, 2022
8220983
css_border
habibi009 Sep 2, 2022
03df492
css_margin
habibi009 Sep 2, 2022
00d8a11
js intro
habibi009 Oct 3, 2022
252ebd3
js where
habibi009 Oct 3, 2022
a4acdf8
js output
habibi009 Oct 5, 2022
bf48126
js statement
habibi009 Oct 5, 2022
f6defa0
js syntax
habibi009 Oct 6, 2022
8d5aa32
js komen
habibi009 Oct 6, 2022
253d6a8
js variable
habibi009 Oct 7, 2022
4173206
js let
habibi009 Oct 7, 2022
7e18e4d
js const
habibi009 Oct 9, 2022
bdb8238
js operator
habibi009 Oct 9, 2022
defc5a7
js arithmetics
habibi009 Oct 11, 2022
cba8e30
js assignment
habibi009 Oct 11, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added css/css bg/download.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
22 changes: 22 additions & 0 deletions css/css bg/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
h1{
background-color: rgba(0, 128, 0, 0.8);
opacity: 0,6;
}
body{
background: url("download.jpg") fixed no-repeat center;
}
</style>
</head>
<body>
<h1>Contoh</h1>

</body>
</html>
28 changes: 28 additions & 0 deletions css/css border/color.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
one{
border-style: dashed;
border-color: violet;
}
two{
border-style: double;
border-color: red;
}
three{
border-style: groove;
border-color: blue;
}
</style>
</head>
<body>
<p class="one">violet</p>
<p class="two">red</p>
<p class="three">blue</p>
</body>
</html>
36 changes: 36 additions & 0 deletions css/css border/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
p.dot {border-style: dotted;}
p.dash {border-style: dashed;}
p.solid {border-style: solid;}
p.double {border-style: double;}
p.grove {border-style: groove;}
p.ridge {border-style: ridge;}
p.inset {border-style: inset;}
p.outset {border-style: outset;}
p.none {border-style: none;}
p.hidden {border-style: hidden;}
p.mix {border-style: hidden dashed solid double;}

</style>
</head>
<body>
<p class="dot">border dot</p>
<p class="dash">border dash</p>
<p class="solid">border solid solid solid</p>
<p class="double">border double</p>
<p class="grove">border grove</p>
<p class="ridge">border ridge</p>
<p class="inset">border inset</p>
<p class="outset">border outset</p>
<p class="none">border none</p>
<p class="hidden">border hidden</p>
<p class="mix">border mix</p>
</body>
</html>
18 changes: 18 additions & 0 deletions css/css border/rounded.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
p{
border: solid;
border-radius: 2px;
}
</style>
</head>
<body>
<p>rounded</p>
</body>
</html>
17 changes: 17 additions & 0 deletions css/css border/short.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
p{
border:6px blue dotted ;
}
</style>
</head>
<body>
<p>border</p>
</body>
</html>
17 changes: 17 additions & 0 deletions css/css border/sides.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
p{
border-style: dashed dotted solid hidden;
}
</style>
</head>
<body>
<p>4 style</p>
</body>
</html>
25 changes: 25 additions & 0 deletions css/css border/width.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.satu{
border-width: 4px;
}
.dua{
border-width: medium;
}
.tiga{
border-width: thick;
}
</style>
</head>
<body>
<p class="satu">border 4px</p>
<p class="dua">border medium</p>
<p class="tiga">border thick</p>
</body>
</html>
11 changes: 11 additions & 0 deletions css/css color/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<h1 style="background-color :aquamarine; color: hsl(0, 70%, 15%)
; border: 2px solid #000000;">Hello world</h1>
<p style="background-color: dodgerblue; color: tomato; border: 2px solid #404040;">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Neque odit esse laborum, at incidunt quidem eum quibusdam quaerat libero reprehenderit iusto fuga harum illo, perspiciatis optio sapiente quae quisquam beatae.</p>
</body>
</html>
26 changes: 26 additions & 0 deletions css/css home/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
background-color: tomato;
}
h1{
color: beige;
text-align: center;
}
p{
font-family: Arial, Helvetica, sans-serif;
font-size: 20px;
}
</style>
</head>
<body>
<h1>contoh</h1>
<p>contoh 2</p>
</body>
</html>
22 changes: 22 additions & 0 deletions css/css how to/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="style.css">
<style>
h2{
text-align: right;
font-family: sans-serif;
font-size: large;
}
</style>
</head>
<body>
<h1>css external</h1>
<h2>css internal</h2>
<h3 style="color: burlywood;font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif ;">css inline</h3>
</body>
</html>
5 changes: 5 additions & 0 deletions css/css how to/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
h1{
color: red;
font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
text-align: center;
}
26 changes: 26 additions & 0 deletions css/css intro/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
body{
background-color: aquamarine;
}
h1{
color: beige;
text-align: justify;
}
p{
font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
font-size: 20px;
}
</style>
</head>
<body>
<h1>contoh</h1>
<p>contoh 2</p>
</body>
</html>
2 changes: 2 additions & 0 deletions css/css komen/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
/* komen */
/* ketik ctrl+/ */
32 changes: 32 additions & 0 deletions css/css margin/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.four{
margin-top: 100px;
margin-bottom: 100px;
margin-right: 150px;
margin-left: 80px;
}
.short{
margin: 25px 20px 30px 40px;
}
h1{
margin: 0 0 50px 0;
}
h2{
margin: 20px 0 0 0;
}
</style>
</head>
<body>
<p class="four">margin 4 side</p>
<p class="short">short margin</p>
<h1>h1</h1>
<h2>h2</h2>
</body>
</html>
33 changes: 33 additions & 0 deletions css/css select/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
p{
color: aquamarine;
}
#paragrap{
color: green;
}
.tengah{
text-align: center;
}
p.tengah{
color: purple;
text-align: center;
}
p.large{
font-size: 400%;
}
</style>
</head>
<body>
<p>paragrap biasa</p>
<p id="paragrap">paragrap dengan id</p>
<p class="tengah large">paragrap dengan class</p>
<h1 class="tengah">h1 dengan class tengah</h1>
</body>
</html>
19 changes: 19 additions & 0 deletions css/css syntax/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
p{
color: red;
font-size: 30px;
text-align: center;
}
</style>
</head>
<body>
<p>ini text</p>
</body>
</html>
Empty file added css/tes/tes.css
Empty file.
9 changes: 9 additions & 0 deletions html/hello_world/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<!DOCTYPE html>
<html lang="en">
<head>
<title>Document</title>
</head>
<body>
<p>Hello world</p>
</body>
</html>
15 changes: 15 additions & 0 deletions html/html_atribut/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<a href="https://www.w3schools.com/html/html_attributes.asp" >html atribut di w3school</a>
<img src="https://i.pinimg.com/736x/af/43/8e/af438e8ef713c8eba08fe5a69c31394d.jpg" alt="gambar" width="200" height="200">
<p style="color:red;">Paragrap merah</p>
<p title="judul">paragrap title</p>
</body>
</html>
Loading