From 5a133d4257e50896d9d6196485ca6007e60fe781 Mon Sep 17 00:00:00 2001 From: Pranjli24 <97534411+Pranjli24@users.noreply.github.com> Date: Sat, 15 Jan 2022 13:42:56 +0530 Subject: [PATCH 1/2] Create demo test 2 --- MCA1/1B/PranjliVerma-2101147/demo test 2 | 1 + 1 file changed, 1 insertion(+) create mode 100644 MCA1/1B/PranjliVerma-2101147/demo test 2 diff --git a/MCA1/1B/PranjliVerma-2101147/demo test 2 b/MCA1/1B/PranjliVerma-2101147/demo test 2 new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/MCA1/1B/PranjliVerma-2101147/demo test 2 @@ -0,0 +1 @@ + From 5bc3ecba5bb18534abe78f22331771b8554f3b3f Mon Sep 17 00:00:00 2001 From: Pranjli24 <97534411+Pranjli24@users.noreply.github.com> Date: Sat, 15 Jan 2022 13:44:45 +0530 Subject: [PATCH 2/2] Add files via upload --- .../student registration form1.html | 30 +++++++++++++++++++ .../use of external css.txt | 22 ++++++++++++++ 2 files changed, 52 insertions(+) create mode 100644 MCA1/1B/PranjliVerma-2101147/student registration form1.html create mode 100644 MCA1/1B/PranjliVerma-2101147/use of external css.txt diff --git a/MCA1/1B/PranjliVerma-2101147/student registration form1.html b/MCA1/1B/PranjliVerma-2101147/student registration form1.html new file mode 100644 index 0000000..c3b978c --- /dev/null +++ b/MCA1/1B/PranjliVerma-2101147/student registration form1.html @@ -0,0 +1,30 @@ + + + +Registration Page + + + +
+
+
+Username: + +

+Email: +
+

+DOB: + +

+Password: +
+

+Re-type password: +

+ +
+ + + + diff --git a/MCA1/1B/PranjliVerma-2101147/use of external css.txt b/MCA1/1B/PranjliVerma-2101147/use of external css.txt new file mode 100644 index 0000000..8173616 --- /dev/null +++ b/MCA1/1B/PranjliVerma-2101147/use of external css.txt @@ -0,0 +1,22 @@ +The external style sheet is generally used when you want to make changes on multiple pages. It is ideal for this condition because it facilitates you to change the look of the entire web site by changing just one file. + +It uses the tag on every pages and the tag should be put inside the head section. + +Example: + + + + +The external style sheet may be written in any text editor but must be saved with a .css extension. This file should not contain HTML elements. + +Let's take another example of a style sheet file named "mystyle.css". + +File: mystyle.css + +body { + background-color: lightblue; +} +h1 { + color: navy; + margin-left: 20px; +}