[first name]-[last-initial].html
(for example, I called mine raghu-b.html
).<h1>
, <h2>
, ... , <h6>
<p>
<ul>
<ol>
<li>
<a href="http://www.addressofsomepage.com/whatever">
[first name]-[last-initial]-profile.jpg
[first name]-[last-initial]-cover.png
[first name]-[last-initial]-1.png
[first name]-[last-initial]-2.jpg
[first name]-[last-initial]-3.png
[first name]-[last-initial]-4.jpg
img
tag:<table>
element is used to represent two dimensional data. A simple table looks like this:<td>
element (or maybe a <th>
element if it's a heading).<td>
or <th>
element must reside within a row, a <tr>
element.<tr>
must have the same number of cells, or things get out of whack.colspan
attribute:colspan="2"
on the first cell ensures that we don't violate the "every <tr>
must have the same number of cells" rule.