Computer Science, asked by nirali3128, 1 year ago

A simple hyperlink coading.
and a table coading


Sauron: a html one??
nirali3128: yes

Answers

Answered by Sauron
3
A simple hyperlink:

<HTML>
<head>
<title>How to create a hyperlink</title>
</head>
<body>
<a href="this_is an_example.jpg">example</a>
</body>
</Html>

To insert a link, use the <a> tag with the href attribute to indicate the address of the target page. Example: <a href="http://www.google.com"> . You can make a link to another page in your website simply by writing the file name: <a href="page2.html"> . Links can also be used to jump to other places on the same page.

how to insert table:
the attachment contains the output of the table.

<HTML>
<head>
<title>
how to create a table.
</title>
</head>
<body>
<table border="1">
<TR><TD>HTML</TD><TD>CSS</TD><TD>JavaScript</td></tr>
<tr><td>markup language</td><td>design and layout</td><td>scripting language</td></tr>

</table>
</body>
</html>

\huge{hope\: it\: helps!!}
Attachments:

nirali3128: Definitely. . thanks a lot
Sauron: welcome ☺️☺️
Similar questions