Thursday, August 20, 2015

HTML 101

In an attempt to prepare for UI interviews, I've decided to go back to coding UI on white paper and notepad, so I can refresh whatever I know about UI so far. Here's the first of those exercises.

The code below is the first ever hello world HTML code most UI developers would write. I first wrote this as a 10 year old, now I am back to the basics after 15 years.

Steps

Step 1: Copy the below code into a notepad file.
Step 2: Save the file as test.html
Step 3: Launch the file in the browser - basically copy the complete path of the file and paste it in browser & hit enter.

Code

<!doctype html>
<html>
<h1>Test 123</h1>
</html>

No comments:

Post a Comment