From 17a8bfdf710b9da11a31d1d452de22affd24d2d9 Mon Sep 17 00:00:00 2001 From: FarrelCaesarian <49358065+Quincy17@users.noreply.github.com> Date: Sat, 18 Nov 2023 11:53:51 +0700 Subject: [PATCH 1/2] Create Registration --- FarrelCaesarian/day2/Registration | 1 + 1 file changed, 1 insertion(+) create mode 100644 FarrelCaesarian/day2/Registration diff --git a/FarrelCaesarian/day2/Registration b/FarrelCaesarian/day2/Registration new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/FarrelCaesarian/day2/Registration @@ -0,0 +1 @@ + From 335c014fe5eff35d17af7a6728138fb602d1590f Mon Sep 17 00:00:00 2001 From: FarrelCaesarian <49358065+Quincy17@users.noreply.github.com> Date: Sat, 18 Nov 2023 11:54:29 +0700 Subject: [PATCH 2/2] Create Registration Website --- FarrelCaesarian/day2/registration.html | 66 ++++++++++++++++++++++++++ FarrelCaesarian/day2/style2.css | 39 +++++++++++++++ 2 files changed, 105 insertions(+) create mode 100644 FarrelCaesarian/day2/registration.html create mode 100644 FarrelCaesarian/day2/style2.css diff --git a/FarrelCaesarian/day2/registration.html b/FarrelCaesarian/day2/registration.html new file mode 100644 index 0000000..e79f632 --- /dev/null +++ b/FarrelCaesarian/day2/registration.html @@ -0,0 +1,66 @@ + + + + + + + Register + + + + +
+

Registration

+ +
+
+
+ +
+ +

+ +
+ +

+ +
+ +
+ +
+ +
+ +

+ +
+ +

+ +
+ +
+
+
+ +
+ + + + + + + + +
+ +
+
+ + +
+
+ + + \ No newline at end of file diff --git a/FarrelCaesarian/day2/style2.css b/FarrelCaesarian/day2/style2.css new file mode 100644 index 0000000..7663f0d --- /dev/null +++ b/FarrelCaesarian/day2/style2.css @@ -0,0 +1,39 @@ +body { + height: 100vh; + background: linear-gradient(to bottom right, rgb(122, 124, 248), rgb(152, 243, 246)); + display: flex; + justify-content: center; + align-items: center; +} +.title{ + font-family: Verdana, Geneva, Tahoma, sans-serif; + font-size: 25px; + margin-left: 17px; + margin-top: 8px ; +} + +.container { + display: flex; +} + +.container div { + margin: 0 20px; +} + +.main { + margin: 10px 20px; +} + +.box { + padding: 10px 10px; background-color: white; + margin: 20px 20px; + width: 33%; + height: 50%; +} +.tombol { + color: white; + font-weight: bold; + padding: 5px 165px; background: radial-gradient(circle at top left, rgb(122, 223, 248), rgb(185, 152, 246)); + margin: 10px 0; + border-style: none; +} \ No newline at end of file