This document defines homework assignments from the Full Stack Web Development Training . Please submit your solution in a seperate branch holding the source code of all below described problems.
Create a HTML document holding the text "Hello HTML".
Ensure you have <doctype>
, <html>
, <head>
, <title>
and <body>
. Play with the other tags as well.
Create an HTML page holding a few headings, each with a few paragraphs of text. Insert a few images. Play with formatting tags <b>
, <i>
, <u>
, <strong>
, <em>
, <sup>
, <sub>
, <pre>
, <br />
etc. Ensure you have <doctype>
, <html>
, <head>
, <title>
and <body>
.
Write an HTML page like the image below (use headings <h1>
,<h2>
,<h3>
) , <div>
, paragraphs <p>
, <hr>
, and <ul>
with <li>
).
- Download (clone) this project
git clone https://github.com/CodeForKirkuk/html5-css3-homeworks
- Then change your directory into downloaded project using
cd html5-css3-homeworks
- Create new branch and name it with your fullname using
git checkout -b <your-full-name>
- Create a new html file for each homework / problem for example:
- problem-1.html
- problem-2.html
- problem-3.html
- Then
git add
andgit commit
to commit to your code - Push your branch up to GitHub
git push -u origin your-full-name
. That's it ;)