-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.html
24 lines (22 loc) · 908 Bytes
/
main.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<header>
<nav>
<!--<marquee> use for moving the image-->
<img src="../WEB_DEV_APRIL/utils/W3Schools_logo.svg.png" alt="w3School image" width="200" height="200">
<a href="https://www.w3schools.com/" target="_blank">W3Schools</a>
<br>
<img src="./utils/freecodecamp.png" alt="freecodecamp" width="200" height="200">
<a href="https://www.freecodecamp.org/" target="_blank">freecodecamp</a>
<!--anchor tag <a> for adding link in html, _blank use open link in different page and _self use toopenlink in same page.-->
</nav>
</header>
</body>
</html>