HTML Special Characters
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…
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…
To create a list like this: One Two Three Use the following code: <ul> <li>One</li> <li>Two</li> <li>Three</li> </ul> The ul stands for unordered list. The li stands for list item.
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…
https://www.youtube.com/watch?v=ovQpXYgokyg From time to time you may need to download images for a project. The video above is a quick demonstration on how to do just that. It moves quick…
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…
PSAs, or Public Service Announcements, are short audio or video clips used to make the public aware of an issue or to change popular attitudes. They are essentially commercials that…