Back to Browse

HTML5 Beginner Basics #2 - Your First Web Page

492 views
Dec 30, 2014
5:21

Welcome back to the 2nd installment of my HTML5 tutorials! Today I'm going to be taking you through the process of creating your very first web page. We won't be doing anything heavy just a few lines of basic HTML to give you an idea of how it works. I'll also be giving some tidbits of advice towards the end. I've decided to put all the files I'm working with on these tutorials on my Github account, so if you don't feel like writing out the pages yourself you can download the zip file of my repository and just look at them on your computer. You can find it here: https://github.com/BrendanDickinson/HTML5Tutorials Let me know what you think about this video and if you think I can do something to improve just leave a comment down below. Help support me by subscribing and I hope you enjoy it! If you have any other questions just leave a comment and I'll get back to you as soon as possible. For more information on my work check out my portfolio website: http://brendangamer.com/ Outline: 2 - Write your first HTML Document Open up you text editor let's start writing our first HTML page !DOCTYPE html html head titlePage Title/title /head body h1My First Heading/h1 pMy first paragraph./p /body /html Doctype HTML5 !DOCTYPE html html -defines the entire page body -defines the body heading -h1 defines a heading paragraph -defines a paragraph /body /html don't forget the ending tags or things can get really messed up content is in between the tags to tell the page what to display empty Html tags br use lowercase tags (doesn't require it but older versions do) save file as .html or .htm doesn't matter and double click it to open it in a browser

Download

0 formats

No download links available.

HTML5 Beginner Basics #2 - Your First Web Page | NatokHD