H1 Headings and Marking Paragraph Elements (Tutorial 1 Case 1)

Image

This picture shows what an <h1> heading looks like as well as how to insert paragraph elements. You can see the title Leonhard Euler (1707-1783) has an <h1> attribute because it is significantly larger than other headings and is at the top of the page. In order to insert this into your web page simply enter

<body>

<h1> Leonhard Euler (1707-1783) </h1>

</body>

in order to insert paragraph elements, you use the <p> tag. One can see the paragraphs begin right after the Leonhard Euler heading. You can insert these paragraph elements by entering

<p>content of paragraph </p>

In the case of this Euler snippet, the coding should be as follow

<h1> Leonhard Euler (1707-1783) </h1>

<p> The greatest mathematician of the…</p>

This entry was posted in Uncategorized. Bookmark the permalink.

Leave a comment