HTML-CSS Question and Answers

Analytics | Trend Nxt UCF HTML-CSS | Question and Answers

HTML is the standard markup language for creating Web pages.


  • HTML stands for Hyper Text Markup Language
  • It describes the structure of Web pages using markup
  • It’s elements are the building blocks of HTML pages
  • It’s elements are represented by tags
  • HTML tags label pieces of content such as “heading”, “paragraph”, “table”, and so on
  • Browsers do not display the HTML tags, but use them to render the content of the page

CSS stands for Cascading Style Sheets.
CSS describes how HTML elements are to be displayed on screen, paper, or in other media.
CSS saves a lot of work. It can control the layout of multiple web pages all at once.
CSS can be added to HTML elements in 3 ways:

  • Inline – by using the style attribute in HTML elements
  • Internal – by using a <style> element in the <head> section
  • External – by using an external CSS file



A Simple HTML Document

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<h1>My First Heading</h1>
<p>My first paragraph.</p>
</body>
</html>



Loader Loading...
EAD Logo Taking too long?

Reload Reload document
| Open Open in new tab