From 1192399191df4c68b3b6fac5f0828df45bf350c7 Mon Sep 17 00:00:00 2001
From: parshurampatil
Date: Mon, 31 Jan 2022 13:38:04 +0530
Subject: [PATCH 1/8] Add .gitignore file
---
.gitignore | 9 +++++++++
1 file changed, 9 insertions(+)
create mode 100644 .gitignore
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000..6485c2f48
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,9 @@
+
+# IDEs and editors
+/.idea
+.project
+.classpath
+.c9/
+*.launch
+.settings/
+*.sublime-workspace
\ No newline at end of file
From 680e4688fa2225bd9a751cf7a1928cdc91fa40fc Mon Sep 17 00:00:00 2001
From: parshurampatil
Date: Fri, 11 Feb 2022 13:11:19 +0530
Subject: [PATCH 2/8] Use css from style.css file
---
starter/03-CSS-Fundamentals/index.html | 2 ++
starter/03-CSS-Fundamentals/style.css | 3 +++
2 files changed, 5 insertions(+)
create mode 100644 starter/03-CSS-Fundamentals/style.css
diff --git a/starter/03-CSS-Fundamentals/index.html b/starter/03-CSS-Fundamentals/index.html
index df8a623a8..da7857b03 100644
--- a/starter/03-CSS-Fundamentals/index.html
+++ b/starter/03-CSS-Fundamentals/index.html
@@ -2,6 +2,8 @@
+
+
The Basic Language of the Web: HTML
diff --git a/starter/03-CSS-Fundamentals/style.css b/starter/03-CSS-Fundamentals/style.css
new file mode 100644
index 000000000..ccf22a056
--- /dev/null
+++ b/starter/03-CSS-Fundamentals/style.css
@@ -0,0 +1,3 @@
+h1 {
+ color: blue;
+}
From 559a275302b6a17e98e8a545158f6e1edadcd658 Mon Sep 17 00:00:00 2001
From: parshurampatil
Date: Fri, 11 Feb 2022 13:23:29 +0530
Subject: [PATCH 3/8] add basic styles to html elements
---
starter/03-CSS-Fundamentals/style.css | 33 ++++++++++++++++++++++++++-
1 file changed, 32 insertions(+), 1 deletion(-)
diff --git a/starter/03-CSS-Fundamentals/style.css b/starter/03-CSS-Fundamentals/style.css
index ccf22a056..f4a030f35 100644
--- a/starter/03-CSS-Fundamentals/style.css
+++ b/starter/03-CSS-Fundamentals/style.css
@@ -1,3 +1,34 @@
h1 {
- color: blue;
+ font-size: 26px;
+ font-family: sans-serif;
+ text-transform: uppercase;
+ font-style: italic;
+}
+
+h2 {
+ font-size: 40px;
+ font-family: sans-serif;
+}
+
+h3 {
+ font-size: 30px;
+ font-family: sans-serif;
+}
+
+h4 {
+ font-size: 20px;
+ font-family: sans-serif;
+ text-transform: uppercase;
+ text-align: center;
+}
+
+p {
+ font-size: 22px;
+ font-family: sans-serif;
+ line-height: 1.5;
+}
+
+li {
+ font-family: sans-serif;
+ font-size: 20px;
}
From dc95c5a10288d703677184a91ecf93b3473f0e19 Mon Sep 17 00:00:00 2001
From: parshurampatil
Date: Tue, 15 Feb 2022 10:35:27 +0530
Subject: [PATCH 4/8] sentence and list selctors
---
starter/03-CSS-Fundamentals/index.html | 2 +-
starter/03-CSS-Fundamentals/style.css | 23 +++++++++++++++++------
2 files changed, 18 insertions(+), 7 deletions(-)
diff --git a/starter/03-CSS-Fundamentals/index.html b/starter/03-CSS-Fundamentals/index.html
index da7857b03..034ec63de 100644
--- a/starter/03-CSS-Fundamentals/index.html
+++ b/starter/03-CSS-Fundamentals/index.html
@@ -143,6 +143,6 @@ Related posts
-
+