reading-notes-code-201d18

View project on GitHub

LINKS

Links are created using the <a> element. Users can click on anything between the opening <a> tag and the closing </a> tag. You specify which page you want to link to using the href attribute.


mailto:

To create a link that starts up the user’s email program and addresses an email to a specified email address, you use the <a> element. However, this time the value of the href attribute starts with mailto: and is followed by the email address you want the email to be sent to.


target

If you want a link to open in a new window, you can use the target attribute on the opening <a> tag. The value of this attribute should be _blank.


Links are created using the <a> element.

The <a> element uses the href attribute to indicate the page you are linking to.

If you are linking to a page within your own site, it is best to use relative links rather than qualified URLs.

You can create links to open email programs with an email address in the “to” field.

You can use the id attribute to target elements within a page that can be linked to.


HTML LAYOUT

  • HTML Page Layout..

    1. HTML Header- This section is displayed on top of the web-page and defines the header information related to it. The <header> tag defines the header section.

    2. HTML Navigation Bar- The menu regarding the contents of the web-page is displayed using a navigation bar. It contains hyperlinks related to the web-page. The <nav> tag defines the navigation section.

    3. HTML Index/Sidebar- It contains the other information related to the web-page, for example, advertisements. It’s not mandatory to use an index. The <aside> tag defines the index/sidebar section.

    4. HTML Content Section- This section contains the purpose and details of the web-page that showcases the website’s real purpose.It is defined using <section> or <article> tags.

    5. HTML Footer- The footer contains the other relevant information related to the web page, such as contact information or address. The <footer> tag defines this section.

    6. HTML Additional Details- The <details> element is used to display additional details. The <summary> tag defines this section.


JAVA Script

WHAT IS A FUNCTION?

Functions let you group a series of statements together to perform a specific task. If different parts of a script repeat the same task, you can reuse the function (rather than repeating the same set of statements).


6 Reasons for Pair Programming

  1. Greater efficiency.
  2. Engaged collaboration.
  3. Learning from fellow students.
  4. Social skills.
  5. Job interview readiness.
  6. Work environment readiness.