From d79d28719aca4adcfdd4a34c07f5de22b4a83fa0 Mon Sep 17 00:00:00 2001 From: Dita Aji Pratama Date: Fri, 28 Feb 2025 10:37:41 +0700 Subject: [PATCH] First commit --- about.html | 40 ++++++++++++++++++++ contact.html | 45 ++++++++++++++++++++++ index.html | 105 +++++++++++++++++++++++++++++++++++++++++++++++++++ product.html | 40 ++++++++++++++++++++ style.css | 31 +++++++++++++++ 5 files changed, 261 insertions(+) create mode 100644 about.html create mode 100644 contact.html create mode 100644 index.html create mode 100644 product.html create mode 100644 style.css diff --git a/about.html b/about.html new file mode 100644 index 0000000..cae986c --- /dev/null +++ b/about.html @@ -0,0 +1,40 @@ + + + + Website personal saya yang sangat bermakna + + + + + + + + + + +
+

Meaningful heading

+
+ + + +

Halaman About

+ + + \ No newline at end of file diff --git a/contact.html b/contact.html new file mode 100644 index 0000000..9f635f4 --- /dev/null +++ b/contact.html @@ -0,0 +1,45 @@ + + + + Website personal saya yang sangat bermakna + + + + + + + + + + +
+

Meaningful heading

+
+ + + +
+

Kontak saya:

+ Jalan kebon jeruk baru, No 11 Rt 3 Rw 5, Jakarta Selatan + +62 80989999 + aji@usaha.com +
+ + + \ No newline at end of file diff --git a/index.html b/index.html new file mode 100644 index 0000000..5f7997f --- /dev/null +++ b/index.html @@ -0,0 +1,105 @@ + + + + Website personal saya yang sangat bermakna + + + + + + + + + + +
+

Meaningful heading

+
+ + + + + +
+ + + + +
+ +
+ +

Macam-macam Tipografi HTML

+
+

Heading 1

+

Heading 2

+

Heading 3

+

Heading 4

+
Heading 5
+
Heading 6
+ +

Paragraph

+ + Text, + Bold, + Strong, + Italic, + Emphatized, + Small, + Mark, + Delete and Insert, + Underline + +
+ + + + + + + + + + +
+

1

+
+

2

+
+

3

+
+

4

+
+ + + + + + + + \ No newline at end of file diff --git a/product.html b/product.html new file mode 100644 index 0000000..9b28eb7 --- /dev/null +++ b/product.html @@ -0,0 +1,40 @@ + + + + Website personal saya yang sangat bermakna + + + + + + + + + + +
+

Meaningful heading

+
+ + + +

Halaman Product

+ + + \ No newline at end of file diff --git a/style.css b/style.css new file mode 100644 index 0000000..370d7ff --- /dev/null +++ b/style.css @@ -0,0 +1,31 @@ +@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap'); + +.custom-button { + margin: 0 ; /* Ngejarakin pada sisi luar */ + padding: 10px ; /* Ngejarakin pada sisi dalam */ +} + +header { + background-color: #2E3440; /* Warna background */ + color:#E5E9F0; /* Warna teks */ + padding-top: 20px; /* Jarak atas */ + padding-bottom: 30px; /* Jarak bawah */ + text-align: center; + font-family: "Open Sans", serif; +} + +nav { + padding-top: 20px; /* Jarak atas */ + height: 50px; /* Tinggi */ + background-color: #4C566A; /* Warna background */ +} + +.kolom-samping { + float: left; + width: 25%; + text-align: center; +} + +.menu-item { + color:#E5E9F0; +} \ No newline at end of file