Posts

Showing posts from July, 2024

Basic Web Page - phase 1

Objective: -learn how to set up browser and editor for coding (to view window on both sides, let first window be active, hold down window key + right or left arrow) -learn the basic structure of html -learn structure of project files -learn tags like h1-h6, p, a, img, ul, ol, hr, br -learn css selectors class (dot), id (hash symbol) NB: At least, one of your project files must have index.html -to go on multiple pages, create the file name for index.html, services.html, about.html, contact.html -paste the same code of index.html into other files, then edit the content you want it to have Basic structure of HTML < !DOCTYPE  html > < html > < head > < title > Page Title < /title > < /head > < body > < h1 > My First Heading < /h1 > < p > My first paragraph. < /p > < /body > < /html >  <html>     <head> <title> Intro to Web Design</title> <!--<link rel="stylesheet" href=&quo