From 4ca1235178f9fa20c76c75ba67edc0061a89d6bf Mon Sep 17 00:00:00 2001 From: Prashant Rawat 07 <97658273+PR-07@users.noreply.github.com> Date: Sat, 15 Jan 2022 13:48:12 +0530 Subject: [PATCH 1/3] Create Prashant Rawat --- MCA1/1B/21561012/Prashant Rawat | 131 ++++++++++++++++++++++++++++++++ 1 file changed, 131 insertions(+) create mode 100644 MCA1/1B/21561012/Prashant Rawat diff --git a/MCA1/1B/21561012/Prashant Rawat b/MCA1/1B/21561012/Prashant Rawat new file mode 100644 index 0000000..0efd6bf --- /dev/null +++ b/MCA1/1B/21561012/Prashant Rawat @@ -0,0 +1,131 @@ + + + + + + +Registration Page + + + + + + + +
+ +
+ +
+ + + + + + +

+ + + +

+ + + +

+ + + + + + + + + + + +
+ +
+ +
+ + Male
+ + Female
+ + Other + +
+ +
+ + + + + + + + +

+ +Address + +
+ + + +

+ +Email: + +
+ +

+ +Password: + +
+ +

+ +Re-type password: + +

+ + + +
+ + + + From ecf37bb526d136ff4b9f371d20fcc63823a9c096 Mon Sep 17 00:00:00 2001 From: Prashant Rawat 07 <97658273+PR-07@users.noreply.github.com> Date: Sat, 15 Jan 2022 13:48:47 +0530 Subject: [PATCH 2/3] Add files via upload --- .../Prashant Rawat 1B external.css.html | 60 +++++++++++++++++++ 1 file changed, 60 insertions(+) create mode 100644 MCA1/1B/21561012/Prashant Rawat 1B external.css.html diff --git a/MCA1/1B/21561012/Prashant Rawat 1B external.css.html b/MCA1/1B/21561012/Prashant Rawat 1B external.css.html new file mode 100644 index 0000000..261f848 --- /dev/null +++ b/MCA1/1B/21561012/Prashant Rawat 1B external.css.html @@ -0,0 +1,60 @@ +index.html + + + + + Font + + + +

Prashant Rawat

+

There are a lot of Things... +
+ To think About... +

+

I am a MCA student

+

I can achieve what I dream for...

+ + + + +style.css + +*{ + text-align: left; + margin: 50px; +} + +h1{ + color: rgb(21, 113, 58); + font-size: medium; + font-family: Verdana, Geneva, Tahoma, sans-serif; +} + +.h2{ + color: rgb(177, 39, 143); + font-size: xx-large; + font-family: cursive; +} + +#h3{ + color: rgb(213, 100, 109); + font-size: 500%; + font-family: fantasy; +} + +p{ + font-size: 200%; +} + +p::first-line{ + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + color: rgb(133, 214, 53); + background-color: rgb(38, 134, 165); +} + +p:hover::first-line{ + font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; + color: rgb(9, 64, 83); + background-color: rgb(221, 81, 167); +} \ No newline at end of file From 29bc21e21bfcee9f01e0afcfbdc3413b15073403 Mon Sep 17 00:00:00 2001 From: Prashant Rawat 07 <97658273+PR-07@users.noreply.github.com> Date: Sat, 15 Jan 2022 14:18:32 +0530 Subject: [PATCH 3/3] Create external.css --- MCA1/1B/21561012/external.css | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 MCA1/1B/21561012/external.css diff --git a/MCA1/1B/21561012/external.css b/MCA1/1B/21561012/external.css new file mode 100644 index 0000000..80032ae --- /dev/null +++ b/MCA1/1B/21561012/external.css @@ -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: green; +} +h1 { + color: red; + margin-left: 20px; +}