Saturday, November 8, 2014

Good Presentation

Sir Tom taught on how to make a good presentation.

Aspect Ratio


Color Scheme

Typography

Examples of good presentations:



Presentation Tips:
1. Use compelling material. 
2. Keep it simple. 
3. Minimize numbers in slides. 
4. Don't parrot PowerPoint. 
5. Time your remarks. 
6. Give it a rest.
7. Use vibrant colors.
8. Import other images and graphics.
9. Distribute handouts at the end — not during the presentation. 
10. Edit ruthlessly before presenting. 

References in HTML and CSS

Sir Tom let us use the Sublime Text 5 and w3schools.com for our activities in HTML and CSS.


Sublime Text 5


w3schools.com

CSS

Sir Tom taught us about CSS(Cascading Style Sheet).


CSS-Cascading Style Sheets (CSS) is a style sheet language used for describing the look and formatting of a document written in a markup language.

3 Implementations
1) In-line – as attribute
ex: <span style=“color: #00ff00”>Text</span>
2) Embedded/Internal – as style tag
ex: <style type=“text/css>
body
{
color: #00ff00
}
 </style>
3) External – linked from css file
ex: 
<head>
<link rel="stylesheet" type="text/css" href=“myCSS.css">

</head>


Selectors
Element Selectors: selects allelements of a specific type/tag (<body>, <h1>, <p>, etc.)
Example:
h3
{
color: #009e54;
font-weight: bold;
}

Class Selectors: selects all elements that belong to a given class.
Example;
class=“myClass”
.myClass
{
color: #009e54;
font-weight: bold;
}

ID Selectors: selects a single element that’s been given a unique id.
Example:
id=“mainPage”
#mainPage
{
color: #009e54;
font-weight: bold;
background-color: #4285f4;
}

Pseudo Selectors: combines a selector with a user activated state(:hover, :visited)
Example:
a:hover
{
color: #009e54;
font-weight: bold;
}

Sir Tom gave us an activity about CSS.
css_sample.html
<html>
<head>
<style type=“text/css”>
body
{
font-family: Arial;
color: #4285f4;
background-color: #090909;
}
</style>
</head>
<body>Hello World!</body>

</html>