Discuss the different steps to create a basic web page Give

Discuss the different steps to create a basic web page.

Give the different list types available in HTML with example.

Solution

1.Different Steps To Create A Basic Web Page

sol: There Are Different Steps To Create A Basic Web Page.

1.The Prime Factor Is Dependent On You. If You Are

   Well Know Or Know About HTML Then It Is Very Easy To Create Your Basic Website As You Like, To Do All This Things You Need To Have A Prior Knowledge

   About HTML That Is You Need To Know Different Types Of Tags That We Can Use In Website Design

2.The Second One Is That If You Have A Little Bit Knowledge About HTML Than You Can Use Editors Like

     1.Sublime Text Editor

     2.Notepad ++

     3.Dreamweaver

     4.You Can Google It Know Different Types Of Editors Or IDE\'s

That Are Useful For HTML Design

3.The Third Method Is That You Can Go To Some Websites That Can Provide Both Design And Hosting

Together But There Is A Slit Difference One Is For Paid And Another On Is For Free

List Of Websites That Can Provide Website\'s

1. webflow -free

2. shopify -$9

3. squarespace-$8

4. weebly And Weebly Carbon -Free

5. Strikingly-Free

6. wordpress-Free

7. uCoz-Free

8.splash-$249 /month and etc

this link Provides The List Of Websites That Provide Both Template’s Of Web Page And Hosting

    https://www.designforfounders.com/website-builders/

2. Different list types available in HTML

HTML offers web authors three ways for specifying lists of information. All lists must contain one or more list elements. Lists may contain

<ul> An unordered list. This will list items using plain bullets.

<ol> An ordered list. This will use different schemes of numbers to list your items.

<dl> A definition list. This arranges your items in the same way as they are arranged in a dictionary.

HTML Unordered Lists

An unordered list is a collection of related items that have no special order or sequence. This list is created by using HTML <ul> tag. Each item in the list is marked with a bullet.

Example

<!DOCTYPE html>

<html>

   <head>

      <title>HTML Unordered List</title>

   </head>

           

   <body>

      <ul>

         <li>Beetroot</li>

         <li>Ginger</li>

         <li>Potato</li>

         <li>Radish</li>

      </ul>

   </body>

  

</html>

The type Attribute

You can use type attribute for <ul> tag to specify the type of bullet you like. By default, it is a disc. Following are the possible options

<ul type = \"square\">

<ul type = \"disc\">

<ul type = \"circle\">

Example

Following is an example where we used <ul type = \"square\">

<!DOCTYPE html>

<html>

   <head>

      <title>HTML Unordered List</title>

   </head>

   <body>

      <ul type = \"square\">

         <li>Beetroot</li>

         <li>Ginger</li>

         <li>Potato</li>

         <li>Radish</li>

      </ul>

   </body>

</html>

HTML Ordered Lists

If you are required to put your items in a numbered list instead of bulleted, then HTML ordered list will be used. This list is created by using <ol> tag. The numbering starts at one and is incremented by one for each successive ordered list element tagged with <li>.

Example

<!DOCTYPE html>

<html>

   <head>

      <title>HTML Ordered List</title>

   </head>

   <body>

      <ol>

         <li>Beetroot</li>

         <li>Ginger</li>

         <li>Potato</li>

         <li>Radish</li>

      </ol>

   </body>

</html>

The type Attribute

You can use type attribute for <ol> tag to specify the type of numbering you like. By default, it is a number. Following are the possible options

<ol type = \"1\"> - Default-Case Numerals.

<ol type = \"I\"> - Upper-Case Numerals.

<ol type = \"i\"> - Lower-Case Numerals.

<ol type = \"A\"> - Upper-Case Letters.

<ol type = \"a\"> - Lower-Case Letters.

Example

Following is an example where we used <ol type = \"1\">

<!DOCTYPE html>

<html>

   <head>

      <title>HTML Ordered List</title>

   </head>

   <body>

      <ol type = \"1\">

         <li>Beetroot</li>

         <li>Ginger</li>

         <li>Potato</li>

         <li>Radish</li>

      </ol>

   </body>

</html>

HTML Definition Lists

HTML and XHTML supports a list style which is called definition lists where entries are listed like in a dictionary or encyclopedia. The definition list is the ideal way to present a glossary, list of terms, or other name/value list.

Definition List makes use of following three tags.

<dl> Defines the start of the list
<dt> A term
<dd> Term definition
</dl> Defines the end of the list

Example

<!DOCTYPE html>

<html>

   <head>

      <title>HTML Definition List</title>

   </head>

              

   <body>

      <dl>

         <dt><b>HTML</b></dt>

         <dd>This stands for Hyper Text Markup Language</dd>

         <dt><b>HTTP</b></dt>

         <dd>This stands for Hyper Text Transfer Protocol</dd>

      </dl>

   </body>

              

</html>

For More Information Go Through www.w3schools.com


Get Help Now

Submit a Take Down Notice

Tutor
Tutor: Dr Jack
Most rated tutor on our site