Basic Website Design (HTML Elements)

HTML Elements:

The web pages are the collection of lots of HTML Elements. There are two types of elements we are using in the web pages. They are:

  • Built-in elements
  • User defined elements.

All elements usually consist of a start tag and end tag, with the content inserted in between:

<tagname>
        Content goes here...
</tagname>

Example:

Read more

Basic Website Design (Introduction)

Introduction to Webpage:

Webpages are simply a collections of HTML scripts. When we visit a website that time our browser decodes the HTML codes into webpage view that we see in the display of our desktop, mobile or tablets.

HTML is short of HyperText Markup Language.

  • Hypertext is simply a piece of text that works as a link
  • Markup Language is a way of writing layout information within documents.
Okay now let’s start doing some scripting here.

Read more