From a198d6ec63e85d6abf3091370319d9e33b0758de Mon Sep 17 00:00:00 2001 From: cici112 Date: Wed, 3 Jan 2024 15:32:27 +0700 Subject: [PATCH 1/3] UAS frontend --- .../21-paweb/public/assets/css/styles.css | 146 ++++++++++++++++++ A3.2100010/21-paweb/resources/css/style.css | 146 ++++++++++++++++++ .../21-paweb/resources/views/front.blade.php | 101 ++++++++++++ A3.2100010/21-paweb/routes/web.php | 2 +- A3.2100010/UAS.txt | 1 + A3.2100010/hosting project.txt | 1 + 6 files changed, 396 insertions(+), 1 deletion(-) create mode 100644 A3.2100010/21-paweb/public/assets/css/styles.css create mode 100644 A3.2100010/21-paweb/resources/css/style.css create mode 100644 A3.2100010/21-paweb/resources/views/front.blade.php create mode 100644 A3.2100010/UAS.txt create mode 100644 A3.2100010/hosting project.txt diff --git a/A3.2100010/21-paweb/public/assets/css/styles.css b/A3.2100010/21-paweb/public/assets/css/styles.css new file mode 100644 index 00000000..048729ef --- /dev/null +++ b/A3.2100010/21-paweb/public/assets/css/styles.css @@ -0,0 +1,146 @@ +body { + font-family: 'Arial', sans-serif; + margin: 0; + padding: 0; + box-sizing: border-box; + background-color: #f4f4f4; +} + +header, +nav, +section, +footer { + max-width: 800px; + margin: 0 auto; + padding: 20px; + background-color: #fff; + border-radius: 8px; + margin-bottom: 20px; +} + +header img { + display:block; + margin: 0 auto; + border-radius: 50%; + width: 150px; + height: 150px; + object-fit: cover; +} + +header h1 { + text-align: center; + margin-top: 10px; + color: #333; +} + +header p { + text-align: center; + color: #777; +} + +nav { + text-align: center; +} + +nav a{ + margin: 0 10px; + text-decoration: none; + color: #333; + font-weight: bold; + transition: color 0.3s ease-in-out; +} + +nav a:hover { + color: #a35fe2c7; + +} + +section h2 { + color: #333; +} + +section p { + color: #777; +} + +.project { + margin-bottom: 20px; + overflow: hidden; + border-radius: 8px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease-in-out; +} + +project img { + width: 100%; + height: auto; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; +} + +#blog { + background-color: #fff; + padding: 20px; + border-radius: 8px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); +} + +.blog-post{ + margin-bottom: 20px; + overflow: hidden; + border-radius: 8px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease-in-out; +} + +.blog-post img { + width: 100%; + height: auto; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; +} + +.blog-content { + padding: 20px; +} + +.blog-content h3 { + color: #333; +} + +.blog-content a{ + display: inline-block; + margin-top: 10px; + padding: 8px 16px; + background-color: #a35fe2c7; + color: #fff; + text-decoration: none; + border-radius: 4px; + transition: background-color 0.3s ease-in-out; +} + +.blog-content a:hover{ + background-color: #f06e5f; +} + +.social{ + margin-top: 10px; +} + +.social a{ + display: inline-block; + margin-right: 10px; + text-decoration: none; + color: #333; + transition: color 0.3s ease-in-out; +} + +.social a:hover { + color: #a35fe2c7; +} + +footer { + text-align: center; + color: #777; +} + diff --git a/A3.2100010/21-paweb/resources/css/style.css b/A3.2100010/21-paweb/resources/css/style.css new file mode 100644 index 00000000..048729ef --- /dev/null +++ b/A3.2100010/21-paweb/resources/css/style.css @@ -0,0 +1,146 @@ +body { + font-family: 'Arial', sans-serif; + margin: 0; + padding: 0; + box-sizing: border-box; + background-color: #f4f4f4; +} + +header, +nav, +section, +footer { + max-width: 800px; + margin: 0 auto; + padding: 20px; + background-color: #fff; + border-radius: 8px; + margin-bottom: 20px; +} + +header img { + display:block; + margin: 0 auto; + border-radius: 50%; + width: 150px; + height: 150px; + object-fit: cover; +} + +header h1 { + text-align: center; + margin-top: 10px; + color: #333; +} + +header p { + text-align: center; + color: #777; +} + +nav { + text-align: center; +} + +nav a{ + margin: 0 10px; + text-decoration: none; + color: #333; + font-weight: bold; + transition: color 0.3s ease-in-out; +} + +nav a:hover { + color: #a35fe2c7; + +} + +section h2 { + color: #333; +} + +section p { + color: #777; +} + +.project { + margin-bottom: 20px; + overflow: hidden; + border-radius: 8px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease-in-out; +} + +project img { + width: 100%; + height: auto; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; +} + +#blog { + background-color: #fff; + padding: 20px; + border-radius: 8px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); +} + +.blog-post{ + margin-bottom: 20px; + overflow: hidden; + border-radius: 8px; + box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); + transition: transform 0.3s ease-in-out; +} + +.blog-post img { + width: 100%; + height: auto; + border-bottom-left-radius: 8px; + border-bottom-right-radius: 8px; +} + +.blog-content { + padding: 20px; +} + +.blog-content h3 { + color: #333; +} + +.blog-content a{ + display: inline-block; + margin-top: 10px; + padding: 8px 16px; + background-color: #a35fe2c7; + color: #fff; + text-decoration: none; + border-radius: 4px; + transition: background-color 0.3s ease-in-out; +} + +.blog-content a:hover{ + background-color: #f06e5f; +} + +.social{ + margin-top: 10px; +} + +.social a{ + display: inline-block; + margin-right: 10px; + text-decoration: none; + color: #333; + transition: color 0.3s ease-in-out; +} + +.social a:hover { + color: #a35fe2c7; +} + +footer { + text-align: center; + color: #777; +} + diff --git a/A3.2100010/21-paweb/resources/views/front.blade.php b/A3.2100010/21-paweb/resources/views/front.blade.php new file mode 100644 index 00000000..c36e6e57 --- /dev/null +++ b/A3.2100010/21-paweb/resources/views/front.blade.php @@ -0,0 +1,101 @@ + + + + + + + Portofolio Saya + + + + + + + +
+ cici +

Cici Wahyuningsih

+

A3.2100010

+

Mahasiswa Prodi Sistem Informasi

+
+ + + +
+

Tentang Saya

+

Selamat datang di portofolio saya. Saya adalah seorang mahasiswa dengan minat dalam teknologi dan desain. Berikut adalah beberapa proyek yang telah saya kerjakan.

+
+ +
+

Proyek Saya

+ +
+

Proyek Saya

+
+ proyek1 +
+

Proyek Pertama

+

Website Blog

+

Proyek pertama ini merupakan tugas dari mata kuliah Sistem Informasi Berbasis Web. Web ini menggunakan framework laravel dan bahasa pemrograman php serta css.

+ Kunjungi Website +
+
+
+ +
+
+ Proyek 2 +

+ Proyek2 +
+

Proyek Kedua

+

Proyek kedua ini merupakan proyek percobaan saya. Saya membuat ini karena iseng saat liburan kuliah tahun lalu. Proyek ini menggunakan framework codeigniter.

+ Kunjungi Website +
+
+ +
+ + + + +
+

Kontak

+

Hubungi saya melalui email: youremail@example.com

+ +
+ +
+ © 2023 Portofolio Saya +
+ + + + \ No newline at end of file diff --git a/A3.2100010/21-paweb/routes/web.php b/A3.2100010/21-paweb/routes/web.php index bb7d2f40..01ebc6a1 100644 --- a/A3.2100010/21-paweb/routes/web.php +++ b/A3.2100010/21-paweb/routes/web.php @@ -15,5 +15,5 @@ Route::resource('blog', BlogController::class); Route::get('/', function () { - return view('welcome'); + return view('front'); }); diff --git a/A3.2100010/UAS.txt b/A3.2100010/UAS.txt new file mode 100644 index 00000000..b7e69fcb --- /dev/null +++ b/A3.2100010/UAS.txt @@ -0,0 +1 @@ +https://a32100010.000webhostapp.com/ \ No newline at end of file diff --git a/A3.2100010/hosting project.txt b/A3.2100010/hosting project.txt new file mode 100644 index 00000000..c30602e0 --- /dev/null +++ b/A3.2100010/hosting project.txt @@ -0,0 +1 @@ +https://a32100010.000webhostapp.com/blog \ No newline at end of file From c55707f72cb814730be81891e392a5d52785cc42 Mon Sep 17 00:00:00 2001 From: cici112 Date: Thu, 4 Jan 2024 13:06:20 +0700 Subject: [PATCH 2/3] UAS Frontend --- A3.2100010/UAS - SIBW.txt | 1 + 1 file changed, 1 insertion(+) create mode 100644 A3.2100010/UAS - SIBW.txt diff --git a/A3.2100010/UAS - SIBW.txt b/A3.2100010/UAS - SIBW.txt new file mode 100644 index 00000000..b7e69fcb --- /dev/null +++ b/A3.2100010/UAS - SIBW.txt @@ -0,0 +1 @@ +https://a32100010.000webhostapp.com/ \ No newline at end of file From 5f94cc5ec9d5540f8e124ab978c29eca1b1b0679 Mon Sep 17 00:00:00 2001 From: cici112 Date: Sat, 6 Jan 2024 13:48:53 +0700 Subject: [PATCH 3/3] UAS Frontend --- A3.2100010/{UAS - SIBW.txt => UAS - A32100010.txt} | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename A3.2100010/{UAS - SIBW.txt => UAS - A32100010.txt} (100%) diff --git a/A3.2100010/UAS - SIBW.txt b/A3.2100010/UAS - A32100010.txt similarity index 100% rename from A3.2100010/UAS - SIBW.txt rename to A3.2100010/UAS - A32100010.txt