-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (38 loc) · 1.46 KB
/
index.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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html> <!-- It defines whether this document is html or not -->
<html>
<head>
<title>My First Web Page</title> <!---Title we see on the browser tab-->
<meta charset="utf-8"> <!-- UTF 8 supports almost all international character for example: Chinese elements we can print on html page -->
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Viewport - Is a visible area on the browser -->
<meta name="keywords" content="html, css">
<!-- We have some meta elements each have different use , meta elements gives about web page infomration
-->
</head>
<style>
img {
width: 100px;
border-radius: 10px;
float: left;
margin-right: 10px;
}
.username {
font-weight: bold;
}
</style>
<body>
<img src="images/Desktop picture.jpg" alt="An image of desktop picture" />
<p class="username" id="name">@nafimohammad</p>
<p>I love to teach you <em>HTML</em> !!</p>
<!--- HyperLinks-->
<a href="text-practice.html">Text Related tags practice</a>
<a href="hyperlinks.html">hyperlinks Practice</a>
<a href="images.html">Images Practice</a>
<a href="lists.html">List Practice</a>
<a href="tables.html">Tables Practice</a>
<a href="container.html">Containers Practice</a>
<a href="semantic-elements.html">Semantic Elements</a>
<a href="styles-practice.html">External CSS</a>.
<a href="shapes.html">Shapes</a>
</body>
</html>