Jadu Week 2

Nabila Zahra
2 min readFeb 22, 2021

Day 1, 15 February 2021

HTML - The Essentials;

HTML (HyperText Markup Language) structures the web page and it’s content. HTML elements are represented by <> tags.

The HTML file should be named with .html extension. The code needs to be written inside the tags <html></html>. The next tag that comes is the body tag <body></body>.

Headings in HTML:
There are total 6 headings,
<h1></h1> (largest) , <h2></h2>, <h3></h2>, <h4></h4>,<h5></h5>, <h6></h6> (smallest)

Paragraphs:
Tags for paragraph are <p></p> and they contain the paragraphs under the heading.

List of items:
1. Ordered List: <ol></ol> These lists are numbered or alphabetical.
<ol type= “A/1/a” ></ol>

2.Unordered List: <ul></ul> These lists are in bullet points.

Inside the ordered/unordered list tag, the tag to list items is <li></li>. For each item in the list, we use the list tag.

Anchor Tags:
This tag defines a hyperlink which redirects you to another page. The tag used is <a href=“link”>name for link</a>

Images
The tag to add images is <img src= “image.jpg” width= “100”, height= “100” alt= “alt text” /> (there is no ending tag)

Comments:
Writing comments in your code helps others to read it or contribute to it but the comments are not run as part of the code. To write comments
<!- -comment- ->

Day 2, 16 February 2021

Personal Branding:

“Your Brand is what people say about you when you are not in the room” -Jeff Bezos, Founder of Amazon

A good personal brand is when how you see yourself matches with how others see you. Effective personal branding helps to pop up in this world of competition and helps to connect with prospective clients and employers.

Developing a personal brand:

  1. Authenticity and honesty: Being authentic and honest about yourself is the key to building a good personal brand.
  2. Consistency towards one’s values and beliefs: Your words and actions should be consistent
  3. Target your audience: create a strategy for a specific audience that your message needs to be delivered to
  4. Determine what you want to be known for: People can only remember one or two things about you so be clear about what you want to be known for
  5. Networking: Create meaningful connections before asking for favors. Help people and give them value first. Grow your online presence.

--

--