Step Two: Starting your Webpage
In this step we will create a very basic webpage. Our topic will be ukuleles. Open your text editor program. Type the following: Save this file as index.html is a…
In this step we will create a very basic webpage. Our topic will be ukuleles. Open your text editor program. Type the following: Save this file as index.html is a…
The first step in creating a webpage using HTML is to understand a few basic terms. Don't worry if you don't fully comprehend the meaning of these terms. As we…
If you are a Mac user and looking to create some HTML files, TextEdit is probably going to be your best choice. By default, TextEdit is not as 'simple' as…
Here is how to change text color in html using a bit of CSS (Cascading Style Sheets). Below are some examples that use inline style elements. <h1 style="color:green";>Welcome</h1> Gives you:…
The tags below should only appear on a webpage one time(along with their corresponding closing tag). <html> - First tag. </html> - Last tag. <head>, </head> - Contains information for…
You may noticed that certain punctuation does not work well in HTML. When using an apostrophe in HTML you will probably get ’ on the website. Simple code will give you…
View the following video: https://www.youtube.com/watch?v=FQLIqPP3CZA Images used for your header can be buildings, landscape or textures. Save it as header in your Town folder. Add the following code(the red text)…
Copy and paste the following into your html file: <html> <head> <link rel=stylesheet type=text/css href=style.css> <title> YourTown, Berks County, Pennsylvania </title> </head> <div id=wrapper> <div id=header> This is the header…
Copy and paste the following code into style.css: div#wrapper { width: 850px; margin-top: 50px; margin-bottom: 10px; margin-left: auto; margin-right: auto; padding: 0px; border: thin solid #000000; -moz-box-shadow: 10px 10px 5px…
Below is a table of HTML Color Codes. This was adapted from w3schools.com. In the early days of the web, computers only supported 256 colors. This list of colors dates…