Posts

Showing posts from April, 2020

The Big Picture (Dr Ben Carson)

Image
The course has been very educative so far. I have learnt many things since the beginning of the course which includes: 1. Learning web design from scratch, 2. Learning how HTML tags work, 3. Learning how to create links and adding pictures to the site, 4. How to create comments in my code.     During the course, I worked on a project which talks about my favourite Book and how much I love the book. The project tells you about the author and the book itself (The Big Picture by Dr Ben Carson) Here is a screenshot of the project. Here are the Codes: First page (index.html) <!DOCTYPE html> <html lang="en" dir="ltr">   <head>     <meta charset="utf-8">     <title>The Big Picture</title>   </head>   <body>     <!-- The <fieldset> tag creat a feild or contaner where we can place other items inside-->     <fieldset>       <!--The lengend tag allows u

Creating Web site

Image
The course has been very educative so far. I have learnt many things since the beginning of the course which include : 1. Learning web design from the scratch, 2. Learning how HTML tags work, 3. Learning how to create an unordered/ordered list, 4. How to create comments in my code.     During the course, I worked on a project which talks about my favorite food and how to prepare it. The project tells you all the ingredients you need to prepare the food in an unordered list form here is an example of an unordered list opening and closing tag <ul>...</ul> . And then it went on to explain step by step procedures to prepare the meal using an ordered list here is an example of an ordered list opening and closing tag <ol>...</ol> Here is a screen shot of the project. Here is the Code: <!DOCTYPE html> <html> <head>   <meta charset="utf-8">   <meta name="viewport" content="width=device-width"