Types of Web Design Languages
Choosing the right type of coding to use for your website is a crucial choice for any web developer. The following post is going to help inform you on the possible choices for you and your web site. We will cover the meaning of each type of code and what they are to be used for.
CSS or Cascading Style Sheets corresponds with HTML. CSS is used to define how to display HTML elements. CSS was introduced with HTML 4.0 it was used to help web developers use specifications, For example colors and fonts. The files s are normally saved in external .css files. External files enable you to change the appearance and layout of all the pages in a Web site, just by editing one single file.
HTML or Hyper Text Markup Language is not a programming language but a mark up language. HTML uses markup tags to describe the layout of web pages. The commonly used codes with HTML are as follows.
- The text between <html and </html> describes the web page
- The text between <body> and </body> is the visible page content
- The text between <h1> and </h1> is displayed as a heading
- The text between <p> and </p> is displayed as a paragraph