Overview HTML

Image
Chapter: 1 Welcome to HTML! HTML stands for  H yper T ext  M arkup  L anguage. Unlike a scripting or programming language that uses scripts to perform functions, a markup language uses tags to identify content. Here is an example of an HTML tag: <p> I'm a paragraph </p> HTML Try it Yourself This course is a combination of interactive quizzes and exercises to facilitate spe ed and quality of learning.  What does a markup language use to identify content? A. scripts B. tags C. commands D. functions The Web Structure The ability to code using HTML is essential for any web professional. Acquiring this skill should be the starting point for anyone who is learning how to create content for the web. Modern Web Design HTML : Structure CSS : Presentation JavaScript : Behavior PHP or similar : Backend CMS : Content Management HTML is easy to learn. So don't wait! Dive right in! The Web Structure Rearrange the code to surround the text "I am learning HTML on SoloLea...

Challenges


                      Challenge:1

Is width="100" and width="100%" the same?

No
Yes


Fill in the blanks to create an h1 heading containing the text "My first website" followed by an h2 tag containing "Sample Page":

<html>

<body>

<
>My First Website</
>

<
>Sample Page</
>

</body>

</html>


Fill in the blanks to make the paragraph bold using the <b> tag:

<h1>Some heading</h1>

I am learning HTML
</p>


During page creation, which tag adds a page name that will show in the title bar of the user's Internet browser?

<
>



Fill in the blanks to display the image, "tree.jpg", at a 200px height and a 500px width:

<
="tree.jpg"

height="200px" alt=""

="
" />


Fill in the blanks to create an ordered list:

<h4>An Ordered List:</
>


<li>Coffee</li>

<li>Tea</li>

<li>Milk

</
>















Fill in the blanks so that the website www.codewithabhishek.com opens upon clicking the image:

<a
="http://
">

<img src="1.jpg" alt="" /

<
>


Comments

Popular posts from this blog

Overview HTML

HTML Basics