-
Notifications
You must be signed in to change notification settings - Fork 1
/
first.html
30 lines (24 loc) · 1.04 KB
/
first.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
25
26
27
28
29
30
<html>
<head>
<title>First</title>
<link rel="stylesheet" type="text/css" href="first.css">
<link href="https://fonts.googleapis.com/css2?family=Rowdies&display=swap" rel="stylesheet">
</head>
<body>
<h1>WELCOME!</h1>
<img width="800" height="500" src="https://media.geeksforgeeks.org/wp-content/cdn-uploads/html-1024x341.png">
<p>This is a website for <strong>beginners</strong></p>
<a href="https://developer.mozilla.org/en-US/docs/Learn/Getting_started_with_the_web/HTML_basics">Click here</a><em> to learn the basics of HTML</em>
<h3>Things you will learn in this course:</h3>
<ul>
<li>You will learn about various <em>tags.</em>
<ul>
<li>body tag</li>
<li>paragraph tag, etc</li>
</ul>
</li>
<li>You will learn how to empathise on some words.</li>
<li>You will learn how to give your website a proper look.</li>
</ul>
</body>
</html>