π§ Email: [email protected] π¬ Telegram: t.me/iamputhea
Create an HTML file that includes a paragraph with a link to Google:
<a href="https://www.google.com">Go to Google</a>
Create a link that opens the mail client to send an email to [email protected]
:
<a href="mailto:[email protected]">Email Us</a>
Link to https://cadt.edu.kh
that opens in a new tab:
<a href="https://cadt.edu.kh" target="_blank">Visit CADT</a>
Create two files: index.html
and about.html
. In index.html
, add:
<a href="about.html">About Us</a>
Folder structure:
project/
βββ index.html
βββ pages/
βββ contact.html
In index.html
:
<a href="pages/contact.html">Contact Page</a>
Add an image logo.jpg
in your folder and show it:
<img src="logo.jpg" alt="Company Logo">
Display an image hosted online:
<img src="https://cadt.edu.kh/wp-content/uploads/2024/04/CADT10-LOGO-anniversary-04.png" alt="NIPTICT Logo">
<img src="image.jpg" alt="Example Image" style="width:300px;height:200px;">
<img src="image.jpg" alt="Example Image" width="300" height="200">
Make the image a clickable link:
<a href="https://cadt.edu.kh">
<img src="logo.jpg" alt="CADT Logo" width="100">
</a>