Skip to content

danielle076/html_basics

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

24 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Heading

<h1>This is how to create a Heading 1</h1>
<h2>This is how to create a Heading 2</h2>
<h3>This is how to create a Heading 3</h3>
<h4>This is how to create a Heading 4</h4>
<h5>This is how to create a Heading 5</h5>
<h6>This is how to create a Heading 6</h6>

Paragraph

<p>Hey, I'm a paragraph!</p>

Links

<a href="https://developer.mozilla.org/nl/"&gt;This is how you make a link</a>

E-mail

<a href="mailto:intoyou@gmail.com">Send me an e-mail</a>

Image

<img src="img.png" alt="Heilige Birmaan" height="266" width="400"/>

Bold & Strong

<strong>Bold a whole sentence!</strong>
Or only <strong>bold</strong> one word!

Italic

<em>This sentence is italic and emphasized.</em>

Underline

<u>Look, we can underline!</u>

Ordered List

<ol>
<li>This is the first item of an ordered list</li>
<li>This is the second item of an ordered list</li>
<li>This is the third item of an ordered list</li>
</ol>

Unordered List

<ul>
<li>This is the first item of an unordered list</li>
<li>This is the second item of an unordered list</li>
<li>This is the third item of an unordered list</li>
</ul>

Superscript

Trademarks should be written in superscript<sup>TM</sup>

Subscript

Sometimes, <sub>citations</sub> are written in subscript

Horizontal Line

Insert a horizontal line between me and sentence 2. <hr> Hi, I'm sentence 2.

Marked or Highlighted

Only highlight the <mark>most important notes</mark>

Cross Through (Deleted)

<del>Deleted cross-trough sentence</del>

Quotations

<q>I'm quoting this because I'm saying it out loud.</q>

Font

<h4 style="font-family:Georgia;">I changed this header4 to Georgia font.</h4>
<p style="font-family:Arial;">I changed this paragraph to Arial font.</p>

Text Color

<p style="color:blue;">The sky is really blue today.</p>
<p style="color:#ff471a;">The fire is a reddish-orange.</p>

Text Size

<p style="font-size:36px;">This paragraph is a size 36 font.</p>
<p style="font-size:10px;">This paragraph is a size 10 font.</p>

Alignment

<p style="text-align:center;">This paragraph should be centered.</p>
<p style="text-align:right;">This paragraph should be right aligned.</p>

Tables

<table>
<tr>
<td>Table item 1</td>
<td>Table item 2</td>
<td>Table item 3</td>
</tr>
<tr>
<td>Table item 4</td>
<td>Table item 5</td>
<td>Table item 6</td>
</tr>
</table>

Block-Level Element Div

<div>Block level element div</div>

Button

<input type="submit">
<button>Versturen</button>

About

No description, website, or topics provided.

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors