My First WebPage

Overview

  1. Prerequisites
  2. Create Project
  3. Changing Tab-Name
  4. Creating Paragraphs
  5. typographical emphasis

Pre Requisites

Create Project

Use emmet to Create HTML Boilerplate Code

<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    
</body>
</html>

Add Paragraph

Change Title

Typographical Emphasis

<p>The <i>quick</i> <b>brown</b> <u>fox</u> jumps over the lazy dog</p>

Line Break

Tables

Table Example 1

<table>
    <tr>
        <td>First row, First cell</td>
        <td>First row, Second cell</td>
    </tr>
</table>

Table Example 1

<table>
    <tr>
        <td>First row, First cell</td>
        <td>First row, Second cell</td>
    </tr>

    <tr>
        <td>Second row, First cell</td>
        <td>Second row, Second cell</td>
    </tr>
</table>

Styling

Styling Example 1

p {
    color: red
}

Styling Example 2

td {
    border-style: solid;
}

Creating a repository