HTML (Hypertext Markup Language), a standardized system for tagging text files to achieve font, color, graphic, and hyperlink effects on World Wide Web pages
You don't have to be an expert in HTML in order to make small changes within your site.
Currently, Google Sites does not allow the use of JavaScript, iFrames or CSS tags because the use of these languages could leave your site open to security risks. If not protected against, these forms of code could allow people to insert malicious code that could harm you or visitors to your site
You can edit the HTML of any page within your site by putting your mouse within the area that you are editing and click on the HTML icon (while in the editing mode)
The HTMl box looks something like this depending on how much content is already in that area.
Note you have an Update and Cancel button at the bottom, as well as an "x" in the upper right hand side of the HTML editor box.
Some basics of HTML code that you need to know.
HTML Tags
HTML markup tags are usually called HTML tags
HTML headings are defined with the <h1> to <h6> tags.
<h1>This is a heading</h1>
<h2>This is a heading</h2>
<h3>This is a heading</h3>
HTML paragraphs are defined with the <p> tag.
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
HTML links are defined with the <a> tag.
<a href="http://www.w3schools.com">This is a link</a>
HTML images are defined with the <img> tag.
<img src="w3schools.jpg" width="104" height="142">
**Note that this indicates the size of the image. You can change the size of your image using this code.
<br>-Line Break- This is the one of few takes that does not require a pair.
<div></div>- The <div> tag defines a division or a section in an HTML document.
When you want to insert some code
The only way to adjust the size of one row or one column within a table is to edit the HTML.
Please keep in mind that the table feature auto sizes depending on what content you place in it. In most cases, the table will resize proportionally correct for what has been input and shouldn't require manual re-sizing.
Also, if you remove the width attribute from every cell in a column, the browser will automatically resize the cells based on content width.
To get images in a row you will need to edit the HTML to remove the <div></div> tags inserted by Google Sites to align the images - follow these instructions:
This will put your images in a row. If you want them centred then select the images and use the centre text tool.
Also, don't forget that you can embed any object (like the weather object) anytime you see an option to get an embed code.