JoChicau
2 years ago
commit
b987341759
2 changed files with 42 additions and 0 deletions
@ -0,0 +1,3 @@ |
|||||
|
Welcome to the folder with code examples of web documents by Joana Chicau. |
||||
|
|
||||
|
You can start ny downloading the 'index-basic-example.html' and open it and edit it using a code editor and use a web browser to see your edits. |
@ -0,0 +1,39 @@ |
|||||
|
<!DOCTYPE html> |
||||
|
<!-- document language --> |
||||
|
<html lang="en-US"> |
||||
|
<head> |
||||
|
|
||||
|
<!-- character encoding set --> |
||||
|
<meta charset="utf-8"> |
||||
|
|
||||
|
<title>Welcome my HTML!</title> |
||||
|
|
||||
|
<!-- Metadata --> |
||||
|
<meta name="Name" content="My name"> |
||||
|
<meta name="Description" content="This is a description of this page. It can be useful to write a description if you want to take SEO (search engine optimization) into account."> |
||||
|
|
||||
|
</head> |
||||
|
|
||||
|
<body> |
||||
|
<!-- Content goes here --> |
||||
|
|
||||
|
<h1>Main Heading (H1)</h1> |
||||
|
|
||||
|
<h2>Second Heading (H2)</h2> |
||||
|
|
||||
|
<p>This is my first sentence!</p> |
||||
|
|
||||
|
<!-- Unordered List --> |
||||
|
|
||||
|
<ul> |
||||
|
<li>list item 01</li> |
||||
|
|
||||
|
<li>list item 02</li> |
||||
|
</ul> |
||||
|
|
||||
|
<!-- Image --> |
||||
|
|
||||
|
<img src="https://upload.wikimedia.org/wikipedia/commons/4/45/Wikipedia20_animated_Wikipedia_Globe_1MB.gif" width="20%" alt="Animated image of Planet Earth, source Wikimedia"> |
||||
|
|
||||
|
</body> |
||||
|
</html> |
Loading…
Reference in new issue