9 – 12h Teaching
Teacher:
RECAP – 24.04 HTML & FTP
Lists are used to group related pieces of information. Lists are frequently used for navigation as well as general content. For semantic correctness, HTML has the ability to express lists of things, and it helps the Google robot and most important it helps screen readers.
You can click on a link and jump to another document, image or site. A link can be an image or any other HTML element, it does not have to be text.
<a href="url">link text</a>
external links
<a href="http://powercoders.org/">Impacting lives by teaching to code</a>
local Links
<a href="portfolio.html">Portfolio</a>
<a href="portfolio/index.html">Portfolio</a>
<a href="../index.html">Portfolio</a>
target
Does it make sense to open a new window?
<a href="portfolio/index.html" target="_blank">Portfolio</a>
"Normal" links always point to the top of a page. Anchors point to a place within a page. html anchor link
<a href="project.html">
<h1>My beautiful project</h1>
<p>the description of my project</p>
</a>
<a href="#project">
<h1>Link to my beautiful project</h1>
</a>
<a id="project">
<h1>My beautiful project</h1>
</a>
Create Subpages for your Portfolio
Please use Markup Validation Service to make you HTML valid.
13h – 14.30h Lunch (Sexy Pasta @Impact Hub)
PERSONNAL PROJECT
Webdesign and Wireframe References
14.30 – 16h
Reminder: Speak in English with everybody ;)