-
Write a basic template for an HTML document that you can use as a starting point for your own work. Make a repo of it that you can clone easily. Update it when you find out things that you want to start with.
-
Pick a very short newspaper article from any online newspaper and write an HTML page with the content from it. Use the tags
article
,nav
,section
,header
andfooter
. If there are elements for which you don't have a tag, use theclass
attribute, and applyid
s to identify specific elements.Open the page on a browser:
- Can we distinguish the tags on the screen?
- Why do we need tags like
article
orsection
?
-
Write an HTML file to show the following table:
Concept Tags Text Level p
,em
,strong
,a
Sections body
,article
,section
,nav
,header
,footer
Images img
Lists ul
,ol
,li
Tables table
,thead
,tbody
,tr
,th
,td
-
Create a page for your day to day bookmarks. Make sections in it and set it as your default page (in Chrome, set the home page to
file:///home/yourself/home.html
, or the file you have created). -
Edit a very simple SVG (with Inkscape or Illustrator), or find one at SVG Repo and embed its code into an HTML file.
-
Go to the Google page and answer the following:
- Find the logo on the inspector. What is the
alt
text in it? - Is the search box an
input
element? - What type of element is the microphone icon in the search bar?
- What about the magnifying glass on the left?
- Does Google use a
footer
element on the bottom and if not, what is it?
- Find the logo on the inspector. What is the
-
Download the image used in this degree page as background.
-
Go to the "Why Choose React" page on Quora on a browser and from there navigate to other pages. At some point Quora shows a login box ("By continuing, I agree that I am...") and behind it the article you were trying to see is visible but the text is blurred. (Damn!)
No problem, we will get rid of it. Inspect the HTML and delete the dialog (find the element which corresponds to it), and later look for the
div
that has the content (as of this writing it has the class "ContentWrapper
") and look for the CSSfilter
property with the "blur" and uncheck it to make the text readable. Yay! -
Go to this Minidosis page, and check how much text it has. Now look at the HTML code of the page (Ctrl+U) and search with Ctrl+F for pieces of the text you have seen. What is going on? How can you explain it?
-
By using the
document
object in the browser console, show an array of all links in some page you like (a short one preferably). Try to use Javascript to change the background color of all links to yellow. -
You want to print the article Beware The Man Of One Study from Slate Star Codex, but the comments are so long that the PDF is mostly comments. Find the
div
containing the comments, remove it, and print the article again. -
Produce a Tweet from Jeff Bezos saying "Tomorrow, I will donate all my fortune to poor people": go to Twitter, find Jeff Bezos and edit the elements in one of his tweets to have the content you want. Take a screenshot and share on social media immediately.
-
Make an HTML page with a title and a text input. Every time you change the text in the input box, the title should display it. Use the text input's change event.
-
Make an HTML page with a search box that does searches on GitHub. Go to GitHub to determine the URL of searches and look for the parameter used in searches (you can deduce it from the URL). Configure the form to use that parameter and URL.
-
Write a form to register a user with the following data: name, lastname, age, username, password, and country. The form has the target URL
http://backend.cia.gov
and should use aPOST
method. -
Write a simple calculator in HTML. If you press the buttons, it should add those digits to the number. If you press an operation, it keeps the first operand in memory, takes note of the operation and accepts digits for the second one. When you press "=" it shows the result.
-
Write a form to configure a restaurant menu. The menu should have 5 options for the first dish, and 5 more for the second (use
select
elements), as well as 3 for different desserts. (Use invented dishes for some fun.) Add a checkbox that requests coffee after dessert. -
Add the last exercise to a repository and now introduce the following modification (for which you will do a special commit): Change the select elements to radio buttons so that the whole menu is visible all the time and you only mark what dishes you want.
-
Open a page that you use often and list on the developer console the URLs of all the links found on the page (hint: use
document.links
). -
Open a page that you use often and show a list on the developer console of the URLs of all images in the page.
- Find a Word (or LibreOffice) document that you have worked on recently (preferably relatively short but with tables, images, lists, etc.). Rewrite it in HTML (try to match the style but not necessarily too close). Print a copy of the document with the browser. Realize how the web platform is a kind of Word/LibreOffice or "typesetting system". Compare the size of the original document with the size of the HTML file. Compare the ease with which you can distribute this file (and know for sure that the receiver will be able to see it) with Word/LibreOffice.