Skip to content

Latest commit

 

History

History
57 lines (39 loc) · 1.26 KB

assignment.md

File metadata and controls

57 lines (39 loc) · 1.26 KB

Assignment

Brief

In this assignment, you will be creating your personal bio information using HTML and CSS. Include the following information:

  • First Name
  • Last Name
  • GitHub URL (typically https://github.com/your_username)
  • Location (Use country image or flag)
  • Hobbies (a list)
  • A short paragraph about you

Optional:

  • An image of yourself

Minimally, you are to apply these HTML Tags:

  • <h1>
  • <div>
  • <ul> and <li>
  • <p>
  • <img>

You should also utilize the following CSS Properties:

  • display
  • padding
  • margin
  • width
  • height

Submission

  • Submit the URL of the GitHub Repository that contains your work to NTU black board.
  • Always store your assignments in the assignments folder.
  • Should you reference the work of your classmate(s) or online resources, give them credit by adding either the name of your classmate or URL.

References

Example of Referencing Classmate

    // Referenced the code block below from Terence.
    function printMe(){
        console.log("I am a reference example");
    }

Example of Referencing Online Resources