diff --git a/README.md b/README.md index 213156d..fc240b4 100644 --- a/README.md +++ b/README.md @@ -1,2 +1,15 @@ +# Git Commands +- git clone https://github.com/progaurab/html-css-js-tutorial.git +- git add . +- git commit -m "minor fixes" +- git push + + + # ex01-dark-mode-calculator -# ex02- \ No newline at end of file +# ex02- +------------------------------------ +# HTML Tags +- cite: +- abbr: +- \ No newline at end of file diff --git a/css-training/ex09-css-grid-layout/index.html b/css-training/ex09-css-grid-layout/index.html new file mode 100644 index 0000000..8270036 --- /dev/null +++ b/css-training/ex09-css-grid-layout/index.html @@ -0,0 +1,30 @@ + + + + + + + + +
+
1
+
2
+
3
+
4
+
5
+
6
+
+ + diff --git a/css-training/ex09-css-grid-layout/index2.html b/css-training/ex09-css-grid-layout/index2.html new file mode 100644 index 0000000..e69de29 diff --git a/html-training/ex01-dark-mode-calculator/dark.css b/html-training/ex01-dark-mode-calculator/dark.css index 76064fc..4836652 100644 --- a/html-training/ex01-dark-mode-calculator/dark.css +++ b/html-training/ex01-dark-mode-calculator/dark.css @@ -50,7 +50,7 @@ input { } input[type="text"] { - background-color: rgb(47, 51, 50); + background-color: rgb(255, 255, 255); } input[type="button"]:hover { diff --git a/html-training/ex08-basic-html-tags/01-document-summary.html b/html-training/ex08-basic-html-tags/01-document-summary.html new file mode 100644 index 0000000..5c6c3a4 --- /dev/null +++ b/html-training/ex08-basic-html-tags/01-document-summary.html @@ -0,0 +1,9 @@ + + + + Learning HTML + + + + + \ No newline at end of file diff --git a/html-training/ex08-basic-html-tags/02-document-information.html b/html-training/ex08-basic-html-tags/02-document-information.html new file mode 100644 index 0000000..e69de29 diff --git a/html-training/ex08-basic-html-tags/03-document-summary.html b/html-training/ex08-basic-html-tags/03-document-summary.html new file mode 100644 index 0000000..55fc532 --- /dev/null +++ b/html-training/ex08-basic-html-tags/03-document-summary.html @@ -0,0 +1,9 @@ + + + + + my first website + + + + diff --git a/html-training/ex08-basic-html-tags/04-document-summary.html b/html-training/ex08-basic-html-tags/04-document-summary.html new file mode 100644 index 0000000..ab9ccb7 --- /dev/null +++ b/html-training/ex08-basic-html-tags/04-document-summary.html @@ -0,0 +1,15 @@ + + + fourth exe + + + +
+

first heading

+

paraghaph of the page

+
+

second heading

+

paraghaph starts here
this is a new line

+
+ + \ No newline at end of file diff --git a/html-training/ex08-basic-html-tags/05-document-summary.html b/html-training/ex08-basic-html-tags/05-document-summary.html new file mode 100644 index 0000000..6f4eaf5 --- /dev/null +++ b/html-training/ex08-basic-html-tags/05-document-summary.html @@ -0,0 +1,16 @@ + + + 2 page + + + strike this line + archana +
let me check how the block quotes work
+ del + +

The Scream by Edward Munch. Painted in 1893.

+ +

WHO was founded in 1948.

+ + + \ No newline at end of file diff --git a/html-training/ex08-basic-html-tags/06-document-summary.html b/html-training/ex08-basic-html-tags/06-document-summary.html new file mode 100644 index 0000000..704b9b0 --- /dev/null +++ b/html-training/ex08-basic-html-tags/06-document-summary.html @@ -0,0 +1,21 @@ + + + + More Tags + + +

+ CSSis a language that describe the style of an HTML document. +

+
1025 Hill wood road minosota pin-19229
+ if(i=0;i<5;i++) { y=i+5; } +

This text contains subscript text X2

+

This text contains superscript text y8

+ this is small text
+ This text is strong
+ This text is bold
+ This text is emphasis text
+ italic text here
+ + diff --git a/html-training/ex08-basic-html-tags/07-document-summary.html b/html-training/ex08-basic-html-tags/07-document-summary.html new file mode 100644 index 0000000..37684af --- /dev/null +++ b/html-training/ex08-basic-html-tags/07-document-summary.html @@ -0,0 +1,19 @@ + + + google + send a mail + 425-566-5492 + go to section 2 +

Images:

+ Mountain View + + + + diff --git a/html-training/ex08-basic-html-tags/08-document-summary.html b/html-training/ex08-basic-html-tags/08-document-summary.html new file mode 100644 index 0000000..fde9a02 --- /dev/null +++ b/html-training/ex08-basic-html-tags/08-document-summary.html @@ -0,0 +1,57 @@ + + +
+ Lists +
+ +

Animal List

+
    +
  1. Cat
  2. +
  3. Dog
  4. +
  5. Lion
  6. +
  7. Tiger
  8. +
+

Grocery List

+ +

Definition List for Car Types

+
+
Toyota
+
Japanes car brand
+
Armani
+
Italian fashion brand
+
+

Forms:

+
+
+ Bio: + First name:
+
+ Last name:
+
+
+ favorite sports:
+ + + +
+
+ + diff --git a/html-training/ex08-basic-html-tags/09-document-summary.html b/html-training/ex08-basic-html-tags/09-document-summary.html new file mode 100644 index 0000000..9f186ed --- /dev/null +++ b/html-training/ex08-basic-html-tags/09-document-summary.html @@ -0,0 +1,25 @@ + + + + Tables + + + + + + + + + + + + + + + + +
+ table about fav fruit +
personfav fruit
Eeshablueberry
SreeshaOranges
+ + diff --git a/html-training/ex08-basic-html-tags/10-document-summary.html b/html-training/ex08-basic-html-tags/10-document-summary.html new file mode 100644 index 0000000..05f9635 --- /dev/null +++ b/html-training/ex08-basic-html-tags/10-document-summary.html @@ -0,0 +1,32 @@ + + + +

Table 2

+ + + + + + + + + + + + + + + + + + + + +
NameSchoolgrade
EeshaLance Thomson elementry2nd Grade
SreeshaRidge SchoolKinder garden
+ + + + + \ No newline at end of file diff --git a/html-training/ex08-basic-html-tags/11-document-summary.html b/html-training/ex08-basic-html-tags/11-document-summary.html new file mode 100644 index 0000000..3eb1db8 --- /dev/null +++ b/html-training/ex08-basic-html-tags/11-document-summary.html @@ -0,0 +1,8 @@ + + +
HTML NEW Tags
+ +
This is the main Content of the Web page
+
This is used for creating Article
+ + \ No newline at end of file