Mini Project Presentation-Merged
Mini Project Presentation-Merged
Mini Project Presentation-Merged
HTML CSS
css
Introduction to html
Value
It must only appear once, at the top of the page (before any HTML tags).
Nesting is what happens when you put tags inside other containing tags.
For example, you would put the <p> inside of the <body> tags. The <p>
is now nested inside the <body>
<body>
<p>The paragraph goes here.</p>
</body>
<h1> defines the most important heading. <h6> defines the least important
heading
<h1>This is heading
1</h1>
This is heading 1
This is heading 2
This is heading 3
This is heading 4
This is heading 5
This is heading 6
Paragraphs
HTML paragraphs are defined with the <p>
tag:
<pre>
My Bonnie lies over the ocean.
My Bonnie lies over the sea.
This will be shown
My Bonnie lies over the ocean.
Oh, bring back my Bonnie to me. correctly with line breaks
</pre> preserved.
Formatted Text
<p>
Here is a paragraph with <em>emphasized</em> text and <strong>important</strong> text.
</p>
<p>
Here is another paragraph with <i>Italic</i> text and <b>Bold</b> text.
</p>
superscripted
Here is text and this is subscripted
text.
Character Codes
Many mathematical, technical, and currency
symbols, are not present on a normal
keyboard.
This is a link to
Google!
Images
HTML images are defined with the <img> tag.
The source file (src), alternative text (alt), width, and height are
provided as attributes.
- Typically used when pointing to a link that is not within your own
domain.
- http://one.fsu.edu/alumni/image/community/clubs/FSU-Seal-full-color.jpg
Lists
Unordered list (bullets)
<ul>
● List Item <li>List Item</li>
<li>Another List Item</li>
● Another List Item
</ul>
Ordered list
<ol>
(sequence)
<li>List Item</li>
1. List Item <li>Another List Item</li>
2. Another List Item </ol>
Tables
Tables are a way to represent
complex information in a grid <table>
<tr>
format. <th>Head</th>
<th>Head</th>
Tables are made up of rows </tr>
and columns. <tr>
<td>Data</td>
<td>Data</td>
</tr>
</table>
Tables
Tables can be styled with CSS to add
zebra striping or to highlight
important rows/columns.
Stylesheet
.center {
text-align: center;
}
.underline {
text-decoration : underline;
}
.blue { color:
blue;
}
CSS syntax
h1 {
3. Value
1. Selector
2. Property
Hariom .
for successfully completing the course
Hariom .
for successfully completing the course
CSS3
on September 4, 2023