Basic HTML

HTML is not a programming language, but just by knowing HTML, you can build a whole website. HTML is used to structure content, separate content, and specify different types of content. For example, you can specify some text to be very important. <h1 id=”unique-title”> I Am a very Important title. </h1> Most tags come in … Read more

Project 2 Solution – Make a Dynamic Web Page (PHP)

There’s a lot going on in the PHP code below. No worries though. We’ll go over every single line where something new is happening. Code Dissection   <?php This special combination of characters marks the opening of PHP that the server will execute. $title = $_POST[‘title’]; In the first two lines, we’re creating two variables. … Read more

Intermediate HTML 3 – Forms

In this lesson, we’re going to take a closer look at the form HTML tag. Forms let users enter input. They are a very important part of websites. form The form is one of the only ways a user can send input (text, images, and videos) to the server where the website is hosted. Forms … Read more

Intermediate HTML 1 – Images and Links

Now that we have the basics down, we can build something a little more complex. We’ll just cover images and links in this lesson (code in bold). In the next lesson, we’ll take a look at the meta tag and the class attribute. <!DOCTYPE html> <html lang=”en”> <head> <meta name=”twitter:site” content=”@HemmingsNews”> <meta charset=”UTF-8″> <meta name=”viewport” … Read more

Course: HTML & CSS: Building a Static Web Page

The goal of this course is to build a static web page using HTML and CSS. If you have the basics down already, you can immediately start working on the project, but if you are brand new to web development, reading through the lessons will help you with the project. All web developers should learn … Read more