Absolute Beginners Course in Web Development

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?

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.

Only cool people share!

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

 

 

Absolute Beginners Course in Web Development was last modified: October 29th, 2021 by Maximus Mccullough
Summary
Absolute Beginners Course in Web Development
Article Name
Absolute Beginners Course in Web Development
Description
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.
Author
Publisher
A1WEBSITEPRO LLC
Logo
Absolute Beginners Course in Web Development

4 Comments

  • Jerry Kyle says:

    Great, Max. This is what I need at this time. I know enough now to follow you. Looking forward to the next lesson.

  • alma says:

    Thank you Maximus! I appreciate you taking the time to teach us. I am brand new to this. How do you convert xml,
    json or html?

    • You can do it a number of ways, I use PHP to convert jsondecode is how I do it with a json script Here is another expmaple of how you can do it with and XML script.

      $xml = simplexml_load_string($xmlstring, "SimpleXMLElement", LIBXML_NOCDATA);
      $json = json_encode($xml);
      $array = json_decode($json,TRUE);

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.