Hey everybody I want to let you know that I have undertaken the grueling task of getting the heck away from WordPress. I was so sick of the problems and updates I had to do all the time. I am now using my ezbloo system and I am integrating all my old posts into the new system. It sucks, but in the end, I will save bundles of time. I needed to keep things simple and that is why I created ezbloo. I'll have more on this later for you guys after I am done with the total integration of my old posts here. So if you are looking for a post and need it faster, shoot me an email and I will make it a priority. [email protected]

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.

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? https://www.youtube.com/watch?v=SCeW5pSTAig&feature=youtu.be

For Mac Users To Set Up Files on Desktop

https://www.youtube.com/watch?v=zCN75v4Bbdk

For Windows Users to Set up Files on Desktop

https://www.youtube.com/watch?v=JVvETEgOuF4

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