How to Change Icons on a Mac
If you are looking to add a little customization to your computer or a way to categorize your files, follow these seven steps to learn how to change icons on…
Hanging Indent In Microsoft Word (For a Bibliography)
A hanging indent is used when creating a bibliography: To create a hanging indent in Microsoft Word, select your text and then go to the Format menu and choose Paragraph.…
Left and Right Aligned Text in Word (Like in a Resume)
Notice in the example above that text is both left aligned and right aligned. This is a common format for résumés. There are a few ways to do this: use…
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…
Creating a Bulleted List in HTML
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.
Creating a Website Header Video and Code
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)…
HTML File for Municipal Project
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…
CSS File for Municipal Website Project
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…
Downloading Images from the Internet
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…