Title: HTML Mockup
Type: Morning Exercise
Course: wdi-cc
Competencies: HTML
Let's use some common HTML tags to create a website for Grumpy Cat.
- Inside your directory for today create a
morning_exercise_htmldirectory, with acat.htmlfile. - How do I make add the boilerplate needed for an HTML file?
- How do I add a title to my file so that you can see the name on the browser tab?
- How do I make a heading?
- What tag should I used to add a paragraph about our client?
- How can I add a picture of the cat? Here's the link that I want to use: https://quelchenonsapevi.it/wp-content/uploads/2016/06/0000-3.jpeg
- How can I make a link to go to the cat's Twitter? Here's the link that the cat wants us to use: https://twitter.com/realgrumpycat?lang=en
Look at the image below and create this webpage using HTML (no styling yet). Write your code in an index.html file that is inside the morning_exercise_html folder.
IMPORTANT Make sure to check your work in the browser as you write your code. Save and reload. Save and reload. Save and reload. etc.
π Reminder:
Using the commandopen index.htmlinside the terminal when you are inside the folder with yourindex.htmlfile will open your application in your browser.
- Get used to committing your work as you go!
π Reminder:
git initmake your current directory a git repo (check that you're not in a git repo first)git add -Ato add all of the files in your repogit commit -m "(some message)"to make a commit
-
URL for image: http://blog.taxact.com/wp-content/uploads/Complete-Guide-to-Employee-Stock-Options-and-Tax-Reporting-Forms.jpg
-
For text to fill the paragraphs, use a Lorem Ipsum generator (this is just my favorite of many that you can use, including Bacon Ipsum and Hipster Ipsum).
-
The links that you create do not have to go anywhere, but you should be able to click on them.
π Reminder:
Use a#to make a "dummy" link.
-
Create an
about.htmlfile which has similar content to the index. -
Have the "About" link in the
index.htmlfile send you toabout.html. -
Have the "Home" link send you to the
index.htmlpage. -
Add a
style.cssfile, link it, and use what you know about CSS to start styling this website.

