From 1a1e7962fba0727bcb172bf79fcf26c933b5cb10 Mon Sep 17 00:00:00 2001 From: BEKIRKSU <113244972+BEKIRKSU@users.noreply.github.com> Date: Tue, 14 Feb 2023 21:21:47 +0000 Subject: [PATCH 1/3] HTML and CSS --- css/style.css | 2 ++ index.html | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 35 insertions(+) diff --git a/css/style.css b/css/style.css index 75e9841e..8f0cbc23 100644 --- a/css/style.css +++ b/css/style.css @@ -6,3 +6,5 @@ * for example: General styles, Navigation styles, Hero styles, Footer etc. * */ + + \ No newline at end of file diff --git a/index.html b/index.html index 67dfc7f5..f86877c0 100644 --- a/index.html +++ b/index.html @@ -18,5 +18,38 @@ + + +

BEKIR

This webpage is about Lorem ipsum dolor sit amet, consectetur adipiscing elit. + Curabitur justo lorem, bibendum in faucibus et, luctus ut diam. Sed nisi est, lacinia ac euismod eu, egestas non augue.

+ +
+

Google Chrome

+

Google Chrome is a web browser developed by Google, released in 2008. Chrome is the world's most popular web browser today!

+ +
+
+

Google Chrome

+

Google Chrome is a web browser developed by Google, released in 2008. Chrome is the world's most popular web browser today!

+ +
+
+

Google Chrome

+

Google Chrome is a web browser developed by Google, released in 2008. Chrome is the world's most popular web browser today!

+ +
+ From 47365ba9cb6794aec723924e4f14ce7e257f4698 Mon Sep 17 00:00:00 2001 From: BEKIRKSU Date: Wed, 26 Apr 2023 10:29:09 -0700 Subject: [PATCH 2/3] CSS updated --- css/style.css | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/css/style.css b/css/style.css index 8f0cbc23..0975732f 100644 --- a/css/style.css +++ b/css/style.css @@ -1,10 +1,6 @@ -/** - * Add your custom styles below - * - * Remember: - * - Be organised, use comments and separate your styles into meaningful chunks - * for example: General styles, Navigation styles, Hero styles, Footer etc. - * - */ +img { + height: 400px; + width: 400px; +} \ No newline at end of file From 77a92bdf4b5c534f05280d8f6ed383cecd5608bf Mon Sep 17 00:00:00 2001 From: BEKIRKSU Date: Wed, 26 Apr 2023 10:31:11 -0700 Subject: [PATCH 3/3] CSS updated --- css/style.css | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 51 insertions(+), 1 deletion(-) diff --git a/css/style.css b/css/style.css index 0975732f..a9af57e5 100644 --- a/css/style.css +++ b/css/style.css @@ -1,6 +1,56 @@ img { height: 400px; - width: 400px; + width: 700px; } +header { + background-color: #F0F0F0; + padding: 20px; + } + + header h1 { + font-size: 36px; + margin: 0; + } + + header p { + font-size: 18px; + margin: 10px 0; + } + + /* Style for navigation bar */ + nav { + background-color: #333; + color: #fff; + padding: 10px; + } + + /* Style for article elements */ + article { + background-color: #fff; + padding: 20px; + margin-bottom: 20px; + } + + article h2 { + font-size: 24px; + margin-top: 0; + } + + article p { + font-size: 16px; + margin: 10px 0; + } + + article img { + max-width: 100%; + } + + /* Style for footer element */ + footer { + background-color: #333; + color: #fff; + padding: 10px; + text-align: center; + } \ No newline at end of file