From 7e35022618a4010e94129f1d11ddfd7387380999 Mon Sep 17 00:00:00 2001
From: Fadlihh <62737219+Fadlihh@users.noreply.github.com>
Date: Wed, 15 Nov 2023 14:41:52 +0700
Subject: [PATCH] Day 1 Web Development
---
AhmadFadlih/Introduction.html | 61 ++++++++++++++++++++++
AhmadFadlih/style.css | 98 +++++++++++++++++++++++++++++++++++
2 files changed, 159 insertions(+)
create mode 100644 AhmadFadlih/Introduction.html
create mode 100644 AhmadFadlih/style.css
diff --git a/AhmadFadlih/Introduction.html b/AhmadFadlih/Introduction.html
new file mode 100644
index 0000000..d58eccd
--- /dev/null
+++ b/AhmadFadlih/Introduction.html
@@ -0,0 +1,61 @@
+
+
+
+
+ Biodata Diri
+
+ Ahmad Fadlih Wahyu Sardana
+
+
+
+
+
+
Biodata Diri
+

+
+
Ahmad Fadlih Wahyu Sardana
+
+ -
+
Nama : Ahmad Fadlih Wahyu Sardana
+
+ -
+
Tempat Tanggal Lahir : Malang, 05 Mei 2005
+
+ -
+
Umur : 18 Tahun
+
+ -
+
Alamat : JL Mentaraman Talok Turen Kabupaten Malang
+
+ -
+
Hobby : Swim
+
+ -
+
+ Deskripsi : Yang Penting Menjalani
+
+
+
+ - GitHub
+
+
+
+
+
+
\ No newline at end of file
diff --git a/AhmadFadlih/style.css b/AhmadFadlih/style.css
new file mode 100644
index 0000000..2fd2d80
--- /dev/null
+++ b/AhmadFadlih/style.css
@@ -0,0 +1,98 @@
+body {
+ max-width: 800px;
+ margin: auto;
+ padding: 20px;
+ font-family: "Poppins";
+ color: #ddfdfd;
+ background: #050808;
+}
+h1 {
+ text-align: center;
+ margin-top: 0;
+}
+img {
+ display: block;
+ margin: auto;
+ max-width: 300px;
+ height: auto;
+ border-radius: 50%;
+}
+.banner {
+ display: flex;
+ align-items: center;
+ justify-content: center;
+ flex-direction: column-reverse;
+ gap: 50px;
+ padding: 80px;
+ text-align: center;
+ height: 100vh;
+ background: #050808;
+}
+
+.banner>img {
+ width: 60vw;
+ transition: 0.1s Linear;
+}
+
+.banner h2 {
+ font-weight: 500;
+ font-size: 30px;
+ margin: 10px;
+}
+
+.banner p {
+ margin: 0;
+ line-height: 1.65;
+ opacity: 0.7;
+}
+
+.waves>use:nth-child(2) {
+ animation-delay: -3s;
+ animation-duration: 6s;
+}
+
+.waves>use:nth-child(3) {
+ animation-delay: -4s;
+ animation-duration: 3s;
+}
+
+@keyframes move-forever {
+ 0% {
+ translate: -90px 0%;
+ }
+
+ 100% {
+ translate: 85px 0%;
+ }
+}
+
+svg {
+ position: absolute;
+ left: 0;
+ bottom: 0;
+ width: 100%;
+ height: 30vw;
+ max-height: 200px;
+}
+
+.waves>use {
+ animation: move-forever 2s -2s linear infinite;
+}
+
+@media (width >=420px) {
+ .banner img {
+ width: 40vw;
+ }
+}
+
+@media (width >=648px) {
+ .banner {
+ text-align: left;
+ flex-direction: row;
+ justify-content: space-between;
+ }
+
+ .banner>img {
+ width: 30vw;
+ }
+}
\ No newline at end of file