Here is the scoop. We take you from having no knowledge at all about computer programming. If you are on this page and you have the capability to watch videos you are all set.
Preliminary Lesson
Since we are dealing with people on different computers we have made 2 tutorials to get you started with the lesson below. This tutorial will show you how to create a file on your desktop that we do in each lesson.
Take these lessons in order if you are a beginner. This way you will learn accurately . If you have any questions there is a box below each post where you can ask questions. Here are the lessons in order.
You can use external CSS libraries to help code you website faster. CSS Libraries are CSS code preprogrammed. Once you know the structure of CSS code then you just name your elements or “tags” after the libraries structure. Many of the CSS libraries that are available help you create responsive websites. Programming CSS Code In Read More
There are JavaScript methods that you can take advantage of when you need to. We like to propose applications where you can use such methods. This helps you to understand them better. In this lesson today we are going to use a JavaScript method of push to show a random number. Set The JavaScript Array Read More
JavaScript Arrays can hold several pieces of data in one string. This is how we set a JavaScript Array. JavaScript Array Syntax The above data values are stored in a variable. They are separated by commas and quotes. Showing Results From A JavaScript Array The process of showing the results from an array starts with Read More
There are times when we need to get the value of a input field with JavaScript. We can get values from several different types of input fields. text number date Complete List Here. JavaScript Value The way we grab a value from an input filed is by using the value function in JavaScript. First set Read More
JavaScript Switch statement is used when we have a lot of variables that we want to match. In the following example we get the day of the week. We can then show something for each day of the week. Getting A Day JavaScript Built In Function There are already functions that JavaScript comes with in Read More
Video Instructions There are times when you want to check if 2 or more conditions are met in JavaScript. To accomplish this we use the OR “||”, AND “&&” statements within the IF condition. In the last lesson we were checking the date. If a certain date met the condition we displayed something. What if Read More
Many times in programming we have to check to see if a condition is met and then display a result of some sort. This is where the if else statements come in handy with JavaScript. For instance lets say that you wanted to display something on a certain date. Maybe on New Years Day you Read More
Lets discuss DOM events in HTML with JavaScript. In the last lesson the event we were calling upon was the “onclick” event. We used a button to accomplish what we wanted. Today were are going to discuss the following events. onclick onload onchange onmouseover onmouseout onmousedown onmouseup onfocus Setting Variables in JavaScript In the Read More
If you are an absolute beginner in web development you must be aware that JavaScript is essential. We are going to break it down for you in the simplest of terms. So if you are a beginner this lesson is for you. This is going to be fun! Document Object Model Document Object Model (DOM) Read More
This is the lesson where we actually begin to code a web page with html and CSS. We take the mock-up from the last post and make a real webpage with clickable links. List of CSS Commands Used Here are a list of CSS commands used in this lesson. color: changes the color of the Read More
What is CSS? CSS is an acronym for “Cascading Style Sheets”. We use CSS to style webpages. With it we can specify positions, colors, background and much more. CSS Syntax The CSS Syntax follows a basic structure. First your target the element that you want to change. Next you will give it some commands. Here Read More
We will be covering HTML5 forms in this lesson. In your web development career you will use forms a lot. It is a good idea to get use to what is available to you. It is important to note that we are covering creating forms. Processing forms in PHP will be coming in the future. Read More
We user ordered lists and unordered lists all the time when developing websites. In fact you would be hard pressed to find a webpage on the internet that does not have some type of list items on it. It is very common to use and this is how you use it. Ordered List Items For Read More
Linking is one of the most important assets to web development. This is a tutorial coming from an absolute beginners point of view. There are 2 major kinds of links. There are inbound links and outbound links. Lets illustrate both examples. Inbound Links An inbound link is a link that is linked within your website. Read More
We use html tables when we want to position things on our document. These position are called rows and columns. They are created with tags just like everything else on a webpage. HTML Tables Where To Use Them There are many places that you may use html tables. You could be wanting to display a Read More