Html and Css Used in This Book
HTML AND CSS USED IN THIS BOOK We will be using very simple HTML ( Hypertext Markup Language ) and styling it with a minimal amount of CSS ( Cascading Style Sheets ) in this book. Even if you have never created a webpage before, you should be able to get up to speed with this in a couple of minutes, so let’s take a quick look at what you need to know now. HTML HTML is the language used to create webpages. Here’s a bare minimum HTML document representing a webpage: <!DOCTYPE html> < html > < head > < title > My Fancy Website </ title > </ head > < body > < h1 > My Fancy Website </ h1 > </ body > </ html > You can save this in a file called myFancyWebPage.html , using any text editor, and open it up in any web browser, and “Hey presto!”, you have a webpage! In the above example, <!DOCTYPE html> marks that we are starting a new HTML file. Next, insid...