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: + +

+ + + +
+ + + + 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 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; +}