diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..6b665aa --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "liveServer.settings.port": 5501 +} diff --git a/readmme.md b/readmme.md new file mode 100644 index 0000000..345e6ae --- /dev/null +++ b/readmme.md @@ -0,0 +1 @@ +Test diff --git a/tasks-by-users/AbbasShaikh0304/01-Project b/tasks-by-users/AbbasShaikh0304/01-Project new file mode 160000 index 0000000..7b84a6e --- /dev/null +++ b/tasks-by-users/AbbasShaikh0304/01-Project @@ -0,0 +1 @@ +Subproject commit 7b84a6e65443d7ab2f6e1314ff13f1a210e4d162 diff --git a/tasks-by-users/AbbasShaikh0304/02-Project/Style.css b/tasks-by-users/AbbasShaikh0304/02-Project/Style.css new file mode 100644 index 0000000..3638cb8 --- /dev/null +++ b/tasks-by-users/AbbasShaikh0304/02-Project/Style.css @@ -0,0 +1,66 @@ +* { + background-color: burlywood; +} +img { + width: 100%; + height: 500px; +} +h1 { + font-size: 30px; + padding-left: 20px; + color: darkred; + font-family: Arial, Helvetica, sans-serif; + font-weight: bold; +} +h3 { + font-size: 25px; + color: brown; +} +h4 { + font-size: 15px; +} +p { + font-size: 20px; + color: brown; +} +p, h3 { + padding-left: 20px; +} +.Lists a { + font-size: 25px; + color: brown; + text-decoration: none; + font-weight: bold; +} +.Lists a:hover { + text-decoration: underline; + font-family: Arial, Helvetica, sans-serif; + color: black; +} +.Lists a:active { + color: yellow; + font-family: Arial, Helvetica, sans-serif; +} +.button { + display: block; + text-decoration: none; + width: 150px; + height: 50%; + padding: 10px; + margin-left: 20px; + border: 2px solid #a80505; + font-size: 20px; + text-align: center; + color: #ddd; + border-radius: 4px; + background: #ec6565; + background: -moz-linear-gradient(top, #ec6565 0%, #a80505 100%); + background: -webkit-linear-gradient(top, #ec6565 0%, #a80505 100%); + background: linear-gradient(top, #ec6565 0%, #a80505 100%) +} +.button:hover { + background: #a80505; + background: -moz-linear-gradient(bottom, #ec6565 0%, #a80505 100% ); + background: -webkit-linear-gradient(bottom, #ec6565 0%, #a80505 100% ); + background: linear-gradient(bottom, #ec6565 0%, #a80505 100% ); +} diff --git a/tasks-by-users/AbbasShaikh0304/02-Project/img/Logo.jfif b/tasks-by-users/AbbasShaikh0304/02-Project/img/Logo.jfif new file mode 100644 index 0000000..dddf7a0 Binary files /dev/null and b/tasks-by-users/AbbasShaikh0304/02-Project/img/Logo.jfif differ diff --git a/tasks-by-users/AbbasShaikh0304/02-Project/index.html b/tasks-by-users/AbbasShaikh0304/02-Project/index.html new file mode 100644 index 0000000..42731a2 --- /dev/null +++ b/tasks-by-users/AbbasShaikh0304/02-Project/index.html @@ -0,0 +1,285 @@ + + + + + + + + Welcome to Tafseer-ibn-kathir.com + + + + + +

Tafseer-ibn-kathir

+

Welcome to our site! + + The Qur'an ("Qor-Ann") is a Message from Allah (swt) to humanity.
It was transmitted to us in a chain + starting from the + Almighty Himself (swt) to the angel Gabriel to the Prophet + Muhammad (saw).
This message was given to the + Prophet (saw) + in pieces over a period spanning approximately 23 years (610 CE to 632 CE).
+ + Ibn Kathir wrote a famous commentary on the Qur'an named al-Qur'an al-'Adhim + which linked certain Hadith, + or + sayings of Muhammad, and sayings of the sahaba to verses of the Qur'an, in explanation. Tafsir ibn Kathir is + famous all + over the Muslim world, and among Muslims in the Western world is one of the most widely used explanations of the + Qu'ran + today. + + Ibn Kathir was renowned for his great memory regarding the sayings of Muhammad and the entire + Qur'an. Ibn Kathir + is + known as a qadi, a master scholar of history, also a muhaddith and a mufassir (Qur'an commentator). Ibn Kathir + saw + himself as a Shafi'i scholar. This is indicated by two of his books, one of which was Tabaqaat ah-Shafa'iah, or + The + Categories of the Followers of Imam + Shafi. +

+
+

you may translate the Tafsir of each Surah by using Bing Translator in many lanuages; Just right click + on your + mouse and Click to "translate with Bing"

+
+ +

To Know More About us, press Know more!

+
+ Know More! +
+ + + \ No newline at end of file diff --git a/tasks-by-users/AbbasShaikh0304/Readme.md b/tasks-by-users/AbbasShaikh0304/Readme.md new file mode 100644 index 0000000..a4883e4 --- /dev/null +++ b/tasks-by-users/AbbasShaikh0304/Readme.md @@ -0,0 +1,3 @@ +# Welcome + +###### These tasks are done by me only \ No newline at end of file diff --git a/tasks-by-users/Kiran-html/01-Project-flexbox/assets/css/style.css b/tasks-by-users/Kiran-html/01-Project-flexbox/assets/css/style.css new file mode 100644 index 0000000..520e6da --- /dev/null +++ b/tasks-by-users/Kiran-html/01-Project-flexbox/assets/css/style.css @@ -0,0 +1,11 @@ +.container{ + background-color: aquamarine; + display: flex; + justify-content: space-around; + min-height: 50vh; + align-items: center; +} +.row{ + border: 1px solid red; + flex: 0 0 10%; +} \ No newline at end of file diff --git a/tasks-by-users/Kiran-html/01-Project-flexbox/index.html b/tasks-by-users/Kiran-html/01-Project-flexbox/index.html new file mode 100644 index 0000000..142945f --- /dev/null +++ b/tasks-by-users/Kiran-html/01-Project-flexbox/index.html @@ -0,0 +1,16 @@ + + + + + + + + Document + + +
+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Tempore, ducimus!
+
Lorem ipsum dolor sit amet consectetur adipisicing elit. Est natus exercitationem consequuntur rerum provident obcaecati.
+
+ + \ No newline at end of file diff --git a/tasks-by-users/Naufil-Shemle/01-html-basics/DivTag.html b/tasks-by-users/Naufil-Shemle/01-html-basics/DivTag.html new file mode 100644 index 0000000..ff4fe3d --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/01-html-basics/DivTag.html @@ -0,0 +1,93 @@ + + + + + + + Mr Green Smell First Emporium + + + + +
+ +
+

Welcome to my smelly fish shop

+

We sell the smelliest fish on the planet

+
+ +
+ +
+ +
+ +

How to Catch a Smelly Fish

+
    +
  1. Step one
  2. +
  3. + Step two +
      +
    1. Step 2.1
    2. +
    3. Step 2.2
    4. +
    +
  4. +
  5. Step three
  6. +
+ +

Types of Lists

+
+
Unordered list
+
Unordered list is a list without any consideration
+
Ordered List
+
This is a list in which order id important
+
Defination list
+
+ Defination list contains terms and descriptions, much like a dictionary +
+
+ +
+ +
+

Type of Fish We Sell

+

Freshwater Fish

+

We are experts in catching many types of freshwater fish...

+

Saltwater fish

+

We are experts in catching many types of Saltwater fish...

+
+ +
+

About Us

+

+ Mr Green's Smelly Fish Emporium prides itself in catching, preparing and + delivering the smelliest fish right to doorstep.
+ Whether you like to cook them feed them to your cat, just hide them in + your unruly neighbours porch, Mr Green has it covered! +

+
+ +
+

Contact Us

+

You can contact Mr Green in various ways...

+

By Phone

+

222-222-FISH

+

By Email

+

iammrgreen@mrgreen.com

+

By carrier pidgeon

+

To do this, order your pidgoen at www.mrgreenspidgeonemporium

+
+ To Top + + diff --git a/tasks-by-users/Naufil-Shemle/01-html-basics/HR-and-BR-tags.html b/tasks-by-users/Naufil-Shemle/01-html-basics/HR-and-BR-tags.html new file mode 100644 index 0000000..7ba9a74 --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/01-html-basics/HR-and-BR-tags.html @@ -0,0 +1,83 @@ + + + + + + + Mr Green Smell First Emporium + + + + +
+

Welcome to my smelly fish shop

+

We sell the smelliest fish on the planet

+ +
+ + + +

How to Catch a Smelly Fish

+
    +
  1. Step one
  2. +
  3. + Step two +
      +
    1. Step 2.1
    2. +
    3. Step 2.2
    4. +
    +
  4. +
  5. Step three
  6. +
+ +

Types of Lists

+
+
Unordered list
+
Unordered list is a list without any consideration
+
Ordered List
+
This is a list in which order id important
+
Defination list
+
+ Defination list contains terms and descriptions, much like a dictionary +
+
+ +
+ +

Type of Fish We Sell

+

Freshwater Fish

+

We are experts in catching many types of freshwater fish...

+

Saltwater fish

+

We are experts in catching many types of Saltwater fish...

+ +

About Us

+

+ Mr Green's Smelly Fish Emporium prides itself in catching, preparing and + delivering the smelliest fish right to doorstep.
+ Whether you like to cook them feed them to your cat, just hide them in + your unruly neighbours porch, Mr Green has it covered! +

+ +

Contact Us

+

You can contact Mr Green in various ways...

+

By Phone

+

222-222-FISH

+

By Email

+

iammrgreen@mrgreen.com

+

By carrier pidgeon

+

To do this, order your pidgoen at www.mrgreenspidgeonemporium

+ + To Top + + diff --git a/tasks-by-users/Naufil-Shemle/01-html-basics/Headings.html b/tasks-by-users/Naufil-Shemle/01-html-basics/Headings.html new file mode 100644 index 0000000..48749d8 --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/01-html-basics/Headings.html @@ -0,0 +1,37 @@ + + + + + + + Mr Green Smell First Emporium + + + +

Welcome to my smelly fish shop

+

We sell the smelliest fish on hte planet

+ +

Type of Fish We Sell

+

Freshwater Fish

+

We are experts in catching many types of freshwater fish...

+

Saltwater fish

+

We are experts in catching many types of Saltwater fish...

+ +

About Us

+

+ Mr Green's Smelly Fish Emporium prides itself in catching, preparing and + delivering the smelliest fish right to doorstep. Whether you like to cook + them feed them to your cat, just hide them in your unruly neighbours + porch, Mr Green has it covered! +

+ +

Contact Us

+

You can contact Mr Green in various ways...

+

By Phone

+

222-222-FISH

+

By Email

+

iammrgreen@mrgreen.com

+

By carrier pidgeon

+

To do this, order your pidgoen at www.mrgreenspidgeonemporium

+ + diff --git a/tasks-by-users/Naufil-Shemle/01-html-basics/IDs-and-Classes.html b/tasks-by-users/Naufil-Shemle/01-html-basics/IDs-and-Classes.html new file mode 100644 index 0000000..132ba9c --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/01-html-basics/IDs-and-Classes.html @@ -0,0 +1,101 @@ + + + + + + + Mr Green Smell First Emporium + + + + +
+ + + +
+ + + +

How to Catch a Smelly Fish

+
    +
  1. Step one
  2. +
  3. + Step two +
      +
    1. Step 2.1
    2. +
    3. Step 2.2
    4. +
    +
  4. +
  5. Step three
  6. +
+ +

Types of Lists

+
+
Unordered list
+
Unordered list is a list without any consideration
+
Ordered List
+
This is a list in which order id important
+
Defination list
+
+ Defination list contains terms and descriptions, much like a dictionary +
+
+ +
+ +
+

Type of Fish We Sell

+

Freshwater Fish

+

We are experts in catching many types of freshwater fish...

+

Saltwater fish

+

We are experts in catching many types of Saltwater fish...

+
+ +
+

About Us

+

+ Mr Green's Smelly Fish Emporium prides itself in catching, preparing and + delivering the smelliest fish right to doorstep.
+ Whether you like to cook them feed them to your cat, just hide them in + your unruly neighbours porch, Mr Green has it covered! +

+
+ +
+

Contact Us

+

You can contact Mr Green in various ways...

+
+

By Phone

+

222-222-FISH

+
+
+

By Email

+

iammrgreen@mrgreen.com

+
+
+

By carrier pidgeon

+

To do this, order your pidgoen at www.mrgreenspidgeonemporium

+
+
+ To Top + + diff --git a/tasks-by-users/Naufil-Shemle/01-html-basics/Links/01-links.html b/tasks-by-users/Naufil-Shemle/01-html-basics/Links/01-links.html new file mode 100644 index 0000000..fe3cbbe --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/01-html-basics/Links/01-links.html @@ -0,0 +1,48 @@ + + + + + + + Mr Green Smell First Emporium + + + + +
+

Welcome to my smelly fish shop

+

We sell the smelliest fish on hte planet

+ + Contact Us + Price list + Try out somawesom web tutorials + Download our full price list + +

Type of Fish We Sell

+

Freshwater Fish

+

We are experts in catching many types of freshwater fish...

+

Saltwater fish

+

We are experts in catching many types of Saltwater fish...

+ +

About Us

+

+ Mr Green's Smelly Fish Emporium prides itself in catching, preparing and + delivering the smelliest fish right to doorstep. Whether you like to cook + them feed them to your cat, just hide them in your unruly neighbours + porch, Mr Green has it covered! +

+ +

Contact Us

+

You can contact Mr Green in various ways...

+

By Phone

+

222-222-FISH

+

By Email

+

iammrgreen@mrgreen.com

+

By carrier pidgeon

+

To do this, order your pidgoen at www.mrgreenspidgeonemporium

+ + To Top + + diff --git a/tasks-by-users/Naufil-Shemle/01-html-basics/Links/02-contact-us.html b/tasks-by-users/Naufil-Shemle/01-html-basics/Links/02-contact-us.html new file mode 100644 index 0000000..804f2a0 --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/01-html-basics/Links/02-contact-us.html @@ -0,0 +1,19 @@ + + + + + + + Mr Green Smell First Emporium + + +

Contact Us

+

You can contact Mr Green in various ways...

+

By Phone

+

222-222-FISH

+

By Email

+

iammrgreen@mrgreen.com

+

By carrier pidgeon

+

To do this, order your pidgoen at www.mrgreenspidgeonemporium

+ + diff --git a/tasks-by-users/Naufil-Shemle/01-html-basics/Links/03-freshwater-fish-prices.html b/tasks-by-users/Naufil-Shemle/01-html-basics/Links/03-freshwater-fish-prices.html new file mode 100644 index 0000000..b773c4a --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/01-html-basics/Links/03-freshwater-fish-prices.html @@ -0,0 +1,13 @@ + + + + + + + Mr Green Smell First Emporium + + +

Freshwater Fish Prices

+ back to index + + diff --git a/tasks-by-users/Naufil-Shemle/01-html-basics/Lists.html b/tasks-by-users/Naufil-Shemle/01-html-basics/Lists.html new file mode 100644 index 0000000..9a012c6 --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/01-html-basics/Lists.html @@ -0,0 +1,79 @@ + + + + + + + Mr Green Smell First Emporium + + + + +
+

Welcome to my smelly fish shop

+

We sell the smelliest fish on hte planet

+ + + +

How to Catch a Smelly Fish

+
    +
  1. Step one
  2. +
  3. + Step two +
      +
    1. Step 2.1
    2. +
    3. Step 2.2
    4. +
    +
  4. +
  5. Step three
  6. +
+ +

Types of Lists

+
+
Unordered list
+
Unordered list is a list without any consideration
+
Ordered List
+
This is a list in which order id important
+
Defination list
+
+ Defination list contains terms and descriptions, much like a dictionary +
+
+ +

Type of Fish We Sell

+

Freshwater Fish

+

We are experts in catching many types of freshwater fish...

+

Saltwater fish

+

We are experts in catching many types of Saltwater fish...

+ +

About Us

+

+ Mr Green's Smelly Fish Emporium prides itself in catching, preparing and + delivering the smelliest fish right to doorstep. Whether you like to cook + them feed them to your cat, just hide them in your unruly neighbours + porch, Mr Green has it covered! +

+ +

Contact Us

+

You can contact Mr Green in various ways...

+

By Phone

+

222-222-FISH

+

By Email

+

iammrgreen@mrgreen.com

+

By carrier pidgeon

+

To do this, order your pidgoen at www.mrgreenspidgeonemporium

+ + To Top + + diff --git a/tasks-by-users/Naufil-Shemle/01-html-basics/add-css-in-HTML.html b/tasks-by-users/Naufil-Shemle/01-html-basics/add-css-in-HTML.html new file mode 100644 index 0000000..c865787 --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/01-html-basics/add-css-in-HTML.html @@ -0,0 +1,107 @@ + + + + + + + Mr Green Smell First Emporium + + + + + + +
+ + + +
+ + + +

How to Catch a Smelly Fish

+
    +
  1. Step one
  2. +
  3. + Step two +
      +
    1. Step 2.1
    2. +
    3. Step 2.2
    4. +
    +
  4. +
  5. Step three
  6. +
+ +

Types of Lists

+
+
Unordered list
+
Unordered list is a list without any consideration
+
Ordered List
+
This is a list in which order id important
+
Defination list
+
+ Defination list contains terms and descriptions, much like a dictionary +
+
+ +
+ +
+

Type of Fish We Sell

+

Freshwater Fish

+

We are experts in catching many types of freshwater fish...

+

Saltwater fish

+

We are experts in catching many types of Saltwater fish...

+
+ +
+

About Us

+

+ Mr Green's Smelly Fish Emporium prides itself in catching, preparing and + delivering the smelliest fish right to doorstep.
+ Whether you like to cook them feed them to your cat, just hide them in + your unruly neighbours porch, Mr Green has it covered! +

+
+ +
+

Contact Us

+

You can contact Mr Green in various ways...

+
+

By Phone

+

222-222-FISH

+
+
+

By Email

+

iammrgreen@mrgreen.com

+
+
+

By carrier pidgeon

+

To do this, order your pidgoen at www.mrgreenspidgeonemporium

+
+
+ To Top + + diff --git a/tasks-by-users/Naufil-Shemle/01-html-basics/add-js-in-HTML.html b/tasks-by-users/Naufil-Shemle/01-html-basics/add-js-in-HTML.html new file mode 100644 index 0000000..40ab29b --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/01-html-basics/add-js-in-HTML.html @@ -0,0 +1,111 @@ + + + + + + + Mr Green Smell First Emporium + + + + + + +
+ + + +
+ + + +

How to Catch a Smelly Fish

+
    +
  1. Step one
  2. +
  3. + Step two +
      +
    1. Step 2.1
    2. +
    3. Step 2.2
    4. +
    +
  4. +
  5. Step three
  6. +
+ +

Types of Lists

+
+
Unordered list
+
Unordered list is a list without any consideration
+
Ordered List
+
This is a list in which order id important
+
Defination list
+
+ Defination list contains terms and descriptions, much like a dictionary +
+
+ +
+ +
+

Type of Fish We Sell

+

Freshwater Fish

+

We are experts in catching many types of freshwater fish...

+

Saltwater fish

+

We are experts in catching many types of Saltwater fish...

+
+ +
+

About Us

+

+ Mr Green's Smelly Fish Emporium prides itself in catching, preparing and + delivering the smelliest fish right to doorstep.
+ Whether you like to cook them feed them to your cat, just hide them in + your unruly neighbours porch, Mr Green has it covered! +

+
+ +
+

Contact Us

+

You can contact Mr Green in various ways...

+
+

By Phone

+

222-222-FISH

+
+
+

By Email

+

iammrgreen@mrgreen.com

+
+
+

By carrier pidgeon

+

To do this, order your pidgoen at www.mrgreenspidgeonemporium

+
+
+ To Top + + + + diff --git a/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut10.html b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut10.html new file mode 100644 index 0000000..df54c8b --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut10.html @@ -0,0 +1,28 @@ + + + + + + + Ids and classes in HTML + + +

Ids and classes tutorial

+
+ + + + + + +
+ + + + First + Second + Third + Forth +
+ + diff --git a/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut11.html b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut11.html new file mode 100644 index 0000000..7a93cb4 --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut11.html @@ -0,0 +1,28 @@ + + + + + + + HTML Entities + + +
+

This is a paragraph

+
+
+

This is another   paragraph

+ + +

Paragraph is wirtten like this <p>

+ +

Pound is written like this £

+

Copyright is written like this ©

+

Another character is ⇛

+

Another character is ¼

+

Empty charater is written like this ​

+ + +
+ + diff --git a/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut12.html b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut12.html new file mode 100644 index 0000000..11f2c53 --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut12.html @@ -0,0 +1,23 @@ + + + + + + + HTML Semantic Tags + + + +

Semantic Elements

+
+ + ipsum dolor, sit amet consectetur adipisicing elit. Nulla necessitatibus + voluptates iste doloremque illo + + ad sint voluptatibus corporis impedit dignissimos provident nesciunt + suscipit ab dolor nam quis, officia quas repudiandae? Lorem ipsum dolor, + sit amet consectetur adipisicing elit. Temporibus voluptatum qui sed earum + nulla, accusantium quos ex accusamus commodi! Distinctio. +
+ + diff --git a/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut4.html b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut4.html new file mode 100644 index 0000000..83a25ac --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut4.html @@ -0,0 +1,17 @@ + + + + + + + + + + Document + + + + + + + diff --git a/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut5.html b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut5.html new file mode 100644 index 0000000..f621e29 --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut5.html @@ -0,0 +1,30 @@ + + + + + + + Heading Paragraph and Emmmet + + + +

Naufil

+

This is Naufil

+ +

+ Lorem ipsum dolor sit. Lorem ipsum dolor sit amet consectetur adipisicing + elit. FugaThis is strong quidem cumque quas provident + molestiae This is emphasizeddolorem alias architecto iste, + This is bold maxime debitis qui voluptas deleniti quae neque + eveniet, This is italic reiciendis error voluptatum quos expedita + natus ratione tempore. +

+
+

First

+

Second

+

Third

+

Fourth

+

This is paragraph

+ + + diff --git a/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut6.html b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut6.html new file mode 100644 index 0000000..c203589 --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut6.html @@ -0,0 +1,29 @@ + + + + + + + Link and Images + + + Go to google
+ Go to facebook
+ Go to twitter
+ Go to linkedin
+ + Tut 4
+ Tut 5
+ + + + + + Remote Image + + diff --git a/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut7.html b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut7.html new file mode 100644 index 0000000..8de11af --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut7.html @@ -0,0 +1,60 @@ + + + + + + + Tables and Lists + + + + + +
    +
  1. This is First item of my ordered list
  2. +
  3. This is Second item of my ordered list
  4. +
  5. This is Third item of my ordered list
  6. +
+ + +

HTML Table

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
Employee NameEmployee IDEmployee Role
Saif12Programmer
Zaid32Android Developer
Naufil31Web Developer
+ + diff --git a/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut8.html b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut8.html new file mode 100644 index 0000000..233308a --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut8.html @@ -0,0 +1,69 @@ + + + + + + + Froms + + + +

This is HTML form tutorial

+
+ +
+ +
+
+ +
+ + +
+
+
+ + +
+
+
+ + +
+
+
+ + +
+
+
+ + +
+
+
+ Gender: Male Female + Others + +
+
+
+ + +
+
+
+ Write about yourself:
+ +
+
+
+ + +
+
+ + diff --git a/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut9.html b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut9.html new file mode 100644 index 0000000..e745884 --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/02-html-code-with-harry/html-tut9.html @@ -0,0 +1,15 @@ + + + + + + + Inline and Block Elements + + + This is a paragraph + This is also a paragraph + This is a span + This also a span + + diff --git a/tasks-by-users/Naufil-Shemle/03-html-explaining/index.html b/tasks-by-users/Naufil-Shemle/03-html-explaining/index.html new file mode 100644 index 0000000..8c3a346 --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/03-html-explaining/index.html @@ -0,0 +1,14 @@ + + + + + + + Document + + +

HTML Explaining

+

Naufil

+ Naufil + + diff --git a/tasks-by-users/Naufil-Shemle/03-html-explaining/style.css b/tasks-by-users/Naufil-Shemle/03-html-explaining/style.css new file mode 100644 index 0000000..c861f36 --- /dev/null +++ b/tasks-by-users/Naufil-Shemle/03-html-explaining/style.css @@ -0,0 +1,3 @@ +p { + background-color: red; +} diff --git a/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/Contact-us.html b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/Contact-us.html new file mode 100644 index 0000000..7b780e5 --- /dev/null +++ b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/Contact-us.html @@ -0,0 +1,19 @@ + + + + Contact US and Support + + + +
+

Contact US and Support

+

Address.:601, Uzair Tower, Next to Zoya Complex, ********.

+

call us now

+

E-mail us.

+
+ +
+

Go Back

+
+ + diff --git a/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/about-us.html b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/about-us.html new file mode 100644 index 0000000..cd520ee --- /dev/null +++ b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/about-us.html @@ -0,0 +1,21 @@ + + + + About-us + + + +
+

About Us

+ +

PurchaseComputerparts.in is a computer parts dealer based in India.

+

We Provide PC parts all over India.

+

Contact our Customer Care to know more.

+
+ +

Customer Care Contact

+
+

Go Back

+
+ + diff --git a/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/css/styles.css b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/css/styles.css new file mode 100644 index 0000000..0dda6db --- /dev/null +++ b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/css/styles.css @@ -0,0 +1,214 @@ +/****************************************** +Created, maintained & Owned by: Tauqeer Khan +Date: 16/07/21 +******************************************/ + +body { + font-family: arial; + margin: 10px auto; + background-color: lightgray; +} + +#Header { + width: 1000px; + margin: 20px auto; + background: white; +} + +#main-heading h1 { + font-family: italic; + font-weight: bolder; +} + +.first { + background: #181818; + padding: 10px; +} + +ul.first { + text-align: right; + list-style-type: none; + margin-right: 0; +} + +.first li { + display: inline-block; + margin-left: 30px; +} + +.first a { + color: white; + text-decoration: none; + text-transform: uppercase; + font-size: 18px; + padding: 6px; +} + +a.current { + background: #8f746c; + border-radius: 5px; +} +.first a:hover { + font-weight: bolder; + border: 1px white solid; + box-shadow: 1px 1px 2px 1px rgba(250, 250, 250, 0.8); +} + +#content { + text-align: center; + font-family: italic; + font-weight: bolder; + color: darkgrey; +} + +#Banner img { + width: 100%; + height: 500px; +} + +#Banner { + background-color: lightgray; +} +.span-list { + text-align: center; + background-color: blanchedalmond; + width: 100%; + margin: 0 auto; +} +.span-list > h1 { + font-family: italic; + font-weight: bolder; +} + +.span-list a img { + display: block; + height: 140px; + width: 300px; + margin: 10px auto; + padding: 20px auto; +} + +#second a { + text-decoration: none; + font-family: italic; + color: black; + text-align: left; + font-weight: bolder; +} + +#second a img:hover { + box-shadow: 4px 4px 8px 4px rgba(40, 40, 40, 0.8); +} + +#second a:hover { + color: blue; + text-decoration: underline; + text-transform: uppercase; +} + +#second a:visited { + color: purple; +} + +#bottom { + background-color: lightblue; +} + +#bottom h1 { + color: black; + font-family: italic; + font-weight: bolder; + font-size: 30px; +} +#bottom h2 { + color: black; + font-family: italic; + font-weight: bolder; + font-size: 20px; +} + +#bottom a { + text-decoration: none; + color: black; + display: block; + list-style-type: none; + padding: 10px; + margin: 10px; + width: 90px; + border: 2px black dashed; + text-align: center; +} + +#bottom a:hover { + font-weight: bolder; + border: 3px black solid; + box-shadow: 2px 2px 4px 2px rgba(40, 40, 40, 0.8); +} +#contact { + width: 1000px; + margin: 0 auto; + background: inherit; +} +#contact-us-page h1 { + font-family: italic; + font-weight: bolder; +} + +#contact-us-page p { + font-family: arial; + font-size: 20px; +} + +#go-back a { + text-decoration: none; + font-family: arial; + display: block; + width: 110px; + margin: 0px; + border: 2px black dashed; + text-align: center; + color: black; +} + +#go-back a:hover { + text-decoration: none; + font-family: arial; + display: block; + width: 110px; + margin: 10px; + font-weight: bolder; + border: 3px black solid; + box-shadow: 1px 1px 2px 1px rgba(40, 40, 40, 0.8); +} + +#about-us h1 { + font-family: italic; + font-weight: bolder; +} + +#about-us p { + font-family: arial; + font-size: 20px; +} + +#customer { + text-decoration: none; + font-family: arial; + display: block; + width: 180px; + margin: 0; + border: 2px black dashed; + text-align: center; + color: black; +} + +#customer:hover { + text-decoration: none; + font-family: arial; + display: block; + width: 180px; + margin: 10px; + font-weight: bolder; + border: 3px black solid; + box-shadow: 1px 1px 2px 1px rgba(40, 40, 40, 0.8); +} diff --git a/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/accesoriesimage.jpg b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/accesoriesimage.jpg new file mode 100644 index 0000000..a9f7009 Binary files /dev/null and b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/accesoriesimage.jpg differ diff --git a/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/graphiccardimage.jpg b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/graphiccardimage.jpg new file mode 100644 index 0000000..d67eb64 Binary files /dev/null and b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/graphiccardimage.jpg differ diff --git a/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/monitorimage.jpg b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/monitorimage.jpg new file mode 100644 index 0000000..3090bac Binary files /dev/null and b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/monitorimage.jpg differ diff --git a/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/motherboards.jpg b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/motherboards.jpg new file mode 100644 index 0000000..fac2757 Binary files /dev/null and b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/motherboards.jpg differ diff --git a/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/pcbuildimage.jpg b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/pcbuildimage.jpg new file mode 100644 index 0000000..747f02c Binary files /dev/null and b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/pcbuildimage.jpg differ diff --git a/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/processorsimage.jpg b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/processorsimage.jpg new file mode 100644 index 0000000..3a2271f Binary files /dev/null and b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/processorsimage.jpg differ diff --git a/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/ramimage.jpg b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/ramimage.jpg new file mode 100644 index 0000000..567b739 Binary files /dev/null and b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/images/ramimage.jpg differ diff --git a/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/index.html b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/index.html new file mode 100644 index 0000000..3160378 --- /dev/null +++ b/tasks-by-users/Tauqeer-Ahmed-99/01-First Webpage/index.html @@ -0,0 +1,141 @@ + + + + + + Welcome to PurchaseComputerParts.in + + + + + + + diff --git a/tasks-by-users/coder-mezab/01-first-html/images/akm.jpg b/tasks-by-users/coder-mezab/01-first-html/images/akm.jpg new file mode 100644 index 0000000..ff4cbbd Binary files /dev/null and b/tasks-by-users/coder-mezab/01-first-html/images/akm.jpg differ diff --git a/tasks-by-users/coder-mezab/01-first-html/images/awm.jpg b/tasks-by-users/coder-mezab/01-first-html/images/awm.jpg new file mode 100644 index 0000000..c92f183 Binary files /dev/null and b/tasks-by-users/coder-mezab/01-first-html/images/awm.jpg differ diff --git a/tasks-by-users/coder-mezab/01-first-html/images/m4.jpg b/tasks-by-users/coder-mezab/01-first-html/images/m4.jpg new file mode 100644 index 0000000..e20be3b Binary files /dev/null and b/tasks-by-users/coder-mezab/01-first-html/images/m4.jpg differ diff --git a/tasks-by-users/coder-mezab/01-first-html/index.html b/tasks-by-users/coder-mezab/01-first-html/index.html new file mode 100644 index 0000000..0b26159 --- /dev/null +++ b/tasks-by-users/coder-mezab/01-first-html/index.html @@ -0,0 +1,108 @@ + + + + + + + most op guns in bgmi + + +

+ The following are the most over powered guns in Battlegrounds Mobile India +

+
    +
  1. +

    THE M416

    +
  2. +
    + +
    +

    + + The M416 is by far the most loved gun in the game its used for close + range,mid rage and even long range thats why its the most loved gun in + the game its used by everybody
    + The HK416, (referred to as the M416 in-game) is an assault + rifle/carbine type weapon in BATTLEGROUNDS. A tactical rifle based on + the discontinued XM8-project as an improvement of both the M16/AR-15 + and the M4 Carbine, it integrates the short-stroke gas piston system + from the G36 rifle for less recoil and increased reliability. Adopted + by the militaries of several countries across the world, in + BATTLEGROUNDS it proves very popular due to the number of attachments + it can accept, allowing a great amount of flexibility. +
    +

    +
  3. +

    THE AKM

    +
  4. +
    + +
    +

    + + The AKM (Russian: Автома́т Кала́шникова модернизи́рованный, tr. Avtomát + Kalášnikova modernizírovannyj, lit. 'Kalashnikov's Automatic Rifle + Modernised') is an assault rifle designed by Soviet small arms + designer Mikhail Kalashnikov in 1959. It is the most ubiquitous rifle + of the Kalashnikov rifles. It was developed as replacement to AK-47 + introduced a decade prior. Introduced into service with the Soviet + Army in 1959, the AKM is the prevalent variant of the entire AK series + of firearms and it has found widespread use with most member states of + the former Warsaw Pact and its African and Asian allies as well as + being widely exported and produced in many other countries. The + production of these rifles was carried out at both the Tula Arms Plant + and Izhmash. It was officially replaced in Soviet frontline service by + the AK-74 in the late 1970s, but remains in use worldwide. The AKM + maintains the AK-47's wood stock, but has simpler individual parts + that are favorable for mass production. Like the AK-47, many variants + of the AKM exist such as the AKMS, AKML, and AKMP. + +

    +
  5. +

    THE AWM

    +
  6. +
    + +
    +

    + + The AWM is a powerful bolt action rifle designed for extreme range + sharpshooting. Dealing the highest amount of damage out of any gun in + the game, it is also one of only two ranged weapons (the other being + the crossbow) capable of killing any player in one shot to the head, + even if the victim is wearing a Spetsnaz helmet. At distances beyond + 500 meters, it becomes the only gun in the game that can kill players + in one shot to the head. The long reload, time between shots, high + damage and unique ammo all represent the high risk, high reward + gameplay that requires the user to have patience and a steady aim, + moving position quickly after firing, lest other players recognizing + the firing sound of the AWM attempt to close in to take the weapon for + themselves. The AWM will deal maximum damage out to 150 meters, with + maximum damage falloff at 679 meters. + +

    +
    +
+

+ These three are the most over powered guns in battlegrounds mobile india +

+
+

+ if you want to download the bgmi game you can download it from the link + given below +

+

+ + click here + +

+ + + diff --git a/tasks-by-users/mmusk/01-first task/index.html b/tasks-by-users/mmusk/01-first task/index.html new file mode 100644 index 0000000..e32306f --- /dev/null +++ b/tasks-by-users/mmusk/01-first task/index.html @@ -0,0 +1,174 @@ + + + + + + + Automotive Enthusiasts + + +

+ You're a true car enthusiast if you remember people, not by their + name, but by the car they drive. +

+ +
+ A red car +
+

+ 5 SIGNS THAT SAY YOU'RE A CAR ENTHUSIAST +

+

+ How many of this applies to you? +

+

+ There are many signs that say you’re a car enthusiast:
the + encyclopedic knowledge of car brands and models, the meticulous care you + provide to your car, and the tendency to ruin other people’s conversations + with brutally technical car talk, just to name a few. Here are 5 other + signs that give you away as a car nerd: +

+

+ 1. YOU PREFER TO DO THINGS MANUALLY
+ + you know how to do it or not, there’s just an allure to using a manual + transmission. Sure a dual-clutch transmission can do things a little bit + faster, but there’s just something more fun about manual transmissions. + The act of changing gears makes the relationship between you and the car + more personal, as if you’re the rider and the car is the horse. Every + depression of the clutch and the shifting of the gear lever through its + various gates remind you that you are driving, and not just getting to + one place. And you also do this for some reason… +

+ gear box + +

+ 2. YOU PERK UP WHEN YOU HEAR CAR CONVERSATIONS
+ Sure your cousin’s new baby is cute and the amount of diaper changes, + and eventual baby-proofing to the apartment makes for interesting small + talk. However, you can’t help but notice the conversation brewing in the + corner of the party about turbo swaps, engine tuning, and tactics to + defeat emission tests at the inspection station. +

+ suricata + +

+ 3. YOU INTERJECT WITHOUT BEING ASKED
+ Once you make your way to that car conversation, you interject without + being asked. There’s a chance they don’t know how turbochargers work or + how you almost bought that E46 M3 but decided the Volkswagen GTI was + “just a better deal,” it’s better to be safe than sorry! +

+
+ +

+ 4. YOU FEEL AN INSTANT BOND WITH THE PERSON DRIVING THE SAME CAR AS YOU
+ In one glance you know that you and the stranger would be best buds if + you knew each other. The both of you made the same great + decision/mistake in choosing the car you’re driving, and fate has + brought the two of you together for this short journey on the road. + Sometimes you look over and nod. Sometimes you take the extra effort to + roll down the window and throw a wave and a quick rev. The EVO and + WRX/STI-bros have it the worst, because if they don’t wave at each + other, kittens will die. +

+
+ A cat hanging by a tree
+ +

+ 5. ENGINE REVS AND EXHAUST NOTES GIVE YOU EAR-BONERS
+ Why else would you roll down the window and rev your engine in a + tunnel? Why else would you chase down that supercar that just passed you + on the highway? And what other reason can you think of for downshifting + and rev matching? You tell others you wanted to stay in the powerband, + but you really wanted to feed your ears with some sweet howls of + whatever it is that’s hiding in the engine bay. And speaking of + ear-boners, here’s one for the history books +

+
+ +
+ +
+ +
+

Garage

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameModelLot No
MERCEDES-BENZ E320 CABRIOLET1994Lot 4
MERCEDES-BENZ 300D1981Lot 12
MERCEDES-BENZ E320 CABRIOLET1994Lot 14
FIAT 600D1969Lot 19
+
+
+
+

Contact Us

+ +
+ + diff --git a/tasks-by-users/mmusk/02-second-task/forms.html b/tasks-by-users/mmusk/02-second-task/forms.html new file mode 100644 index 0000000..ac76937 --- /dev/null +++ b/tasks-by-users/mmusk/02-second-task/forms.html @@ -0,0 +1,50 @@ + + + + + + + Form + + +
+

Employee Interests Survey Form

+ Enter Your name: + +
+ + Enter Your department: + +
+ + Tell us a little bit about yourself: + +
+ Do you workout at home? + Yes No +
+ + How do you like to read about your favorite topic?
+ Books Online PDFs + Kindle Magzine +
+ + What Genre of Movies do you Like? + +
+ + +
+ + diff --git a/tasks-by-users/nehalskdev/01 Project/Catlog.html b/tasks-by-users/nehalskdev/01 Project/Catlog.html new file mode 100644 index 0000000..8f02cac --- /dev/null +++ b/tasks-by-users/nehalskdev/01 Project/Catlog.html @@ -0,0 +1,17 @@ + + + +

List

+
    +
  1. Formals
  2. +
  3. Blazer Suits
  4. +
  5. Blazer Suits
  6. +
+

and many more....

+ + + + + + + diff --git a/tasks-by-users/nehalskdev/01 Project/Final Map.png b/tasks-by-users/nehalskdev/01 Project/Final Map.png new file mode 100644 index 0000000..8575a00 Binary files /dev/null and b/tasks-by-users/nehalskdev/01 Project/Final Map.png differ diff --git a/tasks-by-users/nehalskdev/01 Project/Loc.html b/tasks-by-users/nehalskdev/01 Project/Loc.html new file mode 100644 index 0000000..241fb4a --- /dev/null +++ b/tasks-by-users/nehalskdev/01 Project/Loc.html @@ -0,0 +1,7 @@ + + +Map of shop + + + + diff --git a/tasks-by-users/nehalskdev/01 Project/OIP.jpg b/tasks-by-users/nehalskdev/01 Project/OIP.jpg new file mode 100644 index 0000000..e698a31 Binary files /dev/null and b/tasks-by-users/nehalskdev/01 Project/OIP.jpg differ diff --git a/tasks-by-users/nehalskdev/01 Project/Services.html b/tasks-by-users/nehalskdev/01 Project/Services.html new file mode 100644 index 0000000..33c0f08 --- /dev/null +++ b/tasks-by-users/nehalskdev/01 Project/Services.html @@ -0,0 +1,12 @@ + + + +
    +
  1. Stiching New clothes
  2. +
  3. Alteration to used clothes
  4. + +
+ + + + diff --git a/tasks-by-users/nehalskdev/01 Project/index.html b/tasks-by-users/nehalskdev/01 Project/index.html new file mode 100644 index 0000000..270ff87 --- /dev/null +++ b/tasks-by-users/nehalskdev/01 Project/index.html @@ -0,0 +1,40 @@ + + + + + + + Kraj Men's wear + + + +

Kraj Men's wear ©

+

Style that gives you confidence

+ + +
+ Kraj Mens work +

"What You Wear makes you confident.""

+

About Us

+

Kraj Men's Wear started 20 years back with vision.
And to provide quality services to clients.

+

Services: Click to know

+
+
+ + +

Catalogue +

+
+
+ +

Contact Us

+

+919137882648

+

Email Us

+

krajbizz@hotmail.com

+

Address

Manish Street, Near Sonanwne college, Kalyan West 421 301

+

See us on map

+ +
+ + + \ No newline at end of file diff --git a/tasks-by-users/nehalskdev/02 Poject/Cehcklist.html b/tasks-by-users/nehalskdev/02 Poject/Cehcklist.html new file mode 100644 index 0000000..46e5f2a --- /dev/null +++ b/tasks-by-users/nehalskdev/02 Poject/Cehcklist.html @@ -0,0 +1,17 @@ + + + + + + Checklist + + + Vlogging Kit +
    +
  1. Mobile/Camera
  2. +
  3. Triopd
  4. +
  5. decent editing Software or App
  6. +
+ + + \ No newline at end of file diff --git a/tasks-by-users/nehalskdev/02 Poject/First Vlog Thumb.jpg b/tasks-by-users/nehalskdev/02 Poject/First Vlog Thumb.jpg new file mode 100644 index 0000000..e6ddcbe Binary files /dev/null and b/tasks-by-users/nehalskdev/02 Poject/First Vlog Thumb.jpg differ diff --git a/tasks-by-users/nehalskdev/02 Poject/Fourth thumb.jpg b/tasks-by-users/nehalskdev/02 Poject/Fourth thumb.jpg new file mode 100644 index 0000000..7dfcaf0 Binary files /dev/null and b/tasks-by-users/nehalskdev/02 Poject/Fourth thumb.jpg differ diff --git a/tasks-by-users/nehalskdev/02 Poject/Second thumb.jpg b/tasks-by-users/nehalskdev/02 Poject/Second thumb.jpg new file mode 100644 index 0000000..ce98cb8 Binary files /dev/null and b/tasks-by-users/nehalskdev/02 Poject/Second thumb.jpg differ diff --git a/tasks-by-users/nehalskdev/02 Poject/Thanks.html b/tasks-by-users/nehalskdev/02 Poject/Thanks.html new file mode 100644 index 0000000..725376c --- /dev/null +++ b/tasks-by-users/nehalskdev/02 Poject/Thanks.html @@ -0,0 +1,11 @@ + + + + + Thanks + + +

Thanks For liking

+ + + \ No newline at end of file diff --git a/tasks-by-users/nehalskdev/02 Poject/Top image.jpg b/tasks-by-users/nehalskdev/02 Poject/Top image.jpg new file mode 100644 index 0000000..56cfeb1 Binary files /dev/null and b/tasks-by-users/nehalskdev/02 Poject/Top image.jpg differ diff --git a/tasks-by-users/nehalskdev/02 Poject/Vlog kit.jpg b/tasks-by-users/nehalskdev/02 Poject/Vlog kit.jpg new file mode 100644 index 0000000..8d112dd Binary files /dev/null and b/tasks-by-users/nehalskdev/02 Poject/Vlog kit.jpg differ diff --git a/tasks-by-users/nehalskdev/02 Poject/index.html b/tasks-by-users/nehalskdev/02 Poject/index.html new file mode 100644 index 0000000..fbae6a3 --- /dev/null +++ b/tasks-by-users/nehalskdev/02 Poject/index.html @@ -0,0 +1,72 @@ + + + + + + Airborne Traveler © + + + +
+ Nehal With Holding tripod and camera +

+ Hey, This is Nehal Shaikh. I am a media student who completed his degree in Advertising. and i am very much passionate about camera and making videos.
+ where i am speaking about my experience of different spots and places. i am also trained in editing videos through premier pro +

+
+
+

What is Vlogging?

+

+ Vlogging is derived from the word "Vlog" which is redesigned from the word Blog. + as "v" stands for Video it clearly is understandable. Vlogging Mainly originated from the US culture. and in india it grown up with Influencers like + Nikkhil and Flying Beast +

+
+
+
+

First Vlog

+

The day was Jan 11 2020, My Department decided to take all of us to a very amazing location of ND Studio.

+ + Tom Cruise in Karjat +
Thumbnail of first video
+ + +

Second Vlog

+

The day was very special because we had an annual day of our Department and we invited one of our prestigious alumini checkout who!

+ How I Met Kunal Chhabhria!!! +
Thumbnail of Second video
+ + +

Third Vlog

+ It was the era of lockdoown when going out for a bunch of chips was a big task we decided to shoot a short film in Ambernath! + The Show Must Go on +
thumbnail of third video
+ + +

Fourth Vlog

+ Post lockdoown decided to go out with some friends and do a small trip on my little Honda Navi!!! + Finding Binod!! +
thumbnail of third video
+ +
+
+
+

Things Required to make a Vlog

+ Click Here +
+
+ +

Subscribe to my channel

+

Follow For daily updates

+
+

+ +

+
+ + + \ No newline at end of file diff --git a/tasks-by-users/nehalskdev/02 Poject/third thumb.jpg b/tasks-by-users/nehalskdev/02 Poject/third thumb.jpg new file mode 100644 index 0000000..e173fbd Binary files /dev/null and b/tasks-by-users/nehalskdev/02 Poject/third thumb.jpg differ