Note: you can launch a local webserver serving your current folder when launching this command: It has been defined in an alias.
$ serve
Learn about :
<!DOCTYPE html>
<head>
,<title>
,<meta>
<body>
- Text tags (h1, p, ul/ol/li, em, strong)
- Link tag
- Form tags (form, input, textarea)
- Image tag
- Tables tag
- header, footer, article, aside, audio, video, ...
Each page MUST have a header with your blog title and a footer with informations and links.
Write a blog.html
which contains multiple blog posts filled with sports results, or tv show casts (Game of Thrones, ...) or whatever topic you like which involves enough data to work with.
- You must use table tags to present your teams results (or the cast of your tvshow).
- You must introduce your posts with nice pictures.
- You must group all information in a semantical way (Use the adequates HTML5 tags).
Write a contact.html
page that contains a basic contact form.
- You must use form tags.
- You must use checkboxes, selects, inputs and textareas.
- You must use an input type date.
Link those two pages with a basic navigation menu in each of these pages.
- You must use an unordered list.
- You must use link tags.
- You could use the
_target="blank"
attribute.