This is an absolute beginners course in web development. If you or someone you know is looking to get into the field of web development but do not know where to start look no further. If you know how to run a computer and play a video from YouTube this is all the preliminary knowledge that you will need. All terms will be explained in the videos and code examples will be located here on a1websitepro.

#AbsoluteBeginner

Program With Confidence

It is important that you learn from someone who is in the field of web development. Although we are going to greatly simplify things there will be deeper meaning to why we do things certain ways. You will be learning from someone who had been in the programming field for over 24 years! Better yet you will be getting all of this free! We will be going very slowly though these lessons so if you feel that you need to skip ahead then please do so. We will also skim over some important topics like SEO while we train you.

Things To Do

To get every lesson that gets released make sure that you subscribe using the box at the bottom of this website. Next you will see our social media icons above. Make sure you follow us on Facebook, Twitter and subscribe to our YouTube channel. Without further ado lets dive right in, shall we? 


For Mac Users To Set Up Files on Desktop


For Windows Users to Set up Files on Desktop


Absolute Beginners Course in Web Development

If you need to pause the video. I will put the codes that we use below this video so you can compare.

Bare Bones HTML Document

This is the code for the "Bare Bones" HTML document.
<html>
<head></head>
<body></body>
</html>
 

Code for This Lesson

<html>
<head>
<title>My First Webpage</title>
</head>
<body>

<h1>My First Webpage</h1>

This is my first paragraph on my first web page.

<h2>Coding with Maximus is Fun</h2>

I never knew coding was so easy. I really like learning it.

<h3>Notice it Gets Smaller</h3>

When we use h1 to h6 tags the font usually gets smaller.

<h4>This is a h4 heading</h4>

<h5>This is a h5 heading</h5>

<h6>This is a h6 heading</h6>

</body>
</html>
  Try It Here Next Lesson 


Sign Up To Comment