Question
Easy
In HTML link for e-mail can be created using which of the following?
1
<email=pqr@example.com> This is link to write me an email </email>
2
<email> <SetID> pqr@example.com </SetID> This is link to write me an email </email>
3
<a href="mailto: pqr@example.com"> This is link to write me an email </a>
4
<a herf = "<SetID> pqr@example.com </SetID"> This is link to write me an email </a>
Question Details
Time to Solve: 12
Exam: HTET
Level/Paper: Level 3
Chapter: Web Designing using HTML
Topic: HTML Basics
Correct Answer
Option C
Explanation
The correct option is (3): The fundamental way to create any hyperlink in HTML, including one for an email address, is by using the anchor tag, `, along with its href (Hypertext Reference) attribute. To specifically create an email link, the value of the href attribute must begin with the mailto: protocol, immediately followed by the target email address, such as "mailto:pqr@example.com"`. This is the standard, well-defined mechanism recognized by…Read More
Similar Questions from HTET Exam - Level 3 - Year 2018
Question 1
Easy
Source :
HTET 2018
Choose most appropriate option considering that gp and ip are declared as void * and int * respectively in C++:
Chapter :
Python Programming Fundamentals
Topic :
Operators & Expressions
Question 2
Easy
Source :
HTET 2018
Let for any relation R, IR represents operation insert into R and DR represents operation delete from R. Assume that a relation R2 has a…
Chapter :
Database Management System (DBMS) & SQL
Topic :
Database Concepts
Question 3
Easy
Source :
HTET 2018
Which of the following is suitable tag for java script in HTML?
Chapter :
Web Designing using HTML
Topic :
HTML Basics
Question 4
Easy
Source :
HTET 2018
A relation in which every non-key attribute is fully functionally dependant on the primary key and which has no transitive dependencies is said to be…
Chapter :
Database Management System (DBMS) & SQL
Topic :
Database Concepts