This repository stores code written during the 5 days of frontend coding held for the DB Bootcamp 2024 Training.
This training aims at teaching HTML/CSS & JavaScript.
The code is structured in multiple folders, each folder showing a specific concept.
Includes a hello.xml
file which is a "Hello, world!" of an XML document.
Includes a xhtml11.html
file which shows how a XHTML 1.1 DOCTYPE looks like. This example shows how an XML document is validated against a DTD.
Includes a html5.html
file which shows how a (DTD-less) HTML 5 document looks like.
Also includes a hello.html
file which includes basic HTML tags, with attributes and ids. Also includes external links and internal anchors.
Includes an index.html
file which incorporates some semantic HTML tags. Also includes internal CSS styles to format these tags.
Includes an index.html
file which incorporates a table with header, body and footer.
Also includes a blockquote
section.
There are internall CSS styles defined, together with pseudo-elements like ::before
and ::after
.
Includes an index.html
file which incorporates a plenitude of HTML input elements, together with submit and regular buttons added either with the button
HTML 5 tag, or the old input type="button"
(and alternatives) HTML 4 tag.
Includes a blog.html
file which mimics the structure of a blog page. Also includes a style.css
fiel that defines some rules for the blog page.