-
Notifications
You must be signed in to change notification settings - Fork 0
/
web1.html
68 lines (54 loc) · 1.78 KB
/
web1.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html> <!--Hypertext Markup Language(html)-->
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Myweb</title>
</head>
<body>
<h1>WEB DEVELOPING</h1> <!--header(h1)-Basic_tag-->
<h2>Programming Hero</h2>
<h3>Dhaka</h3>
<h4>Chittagong</h4>
<h5>Rangpur</h5>
<h6>Barisal</h6>
<div> <!--division to make a container where have many tag (div)-->
<p>Whats up ?</p>
</div>
<section>
<p>Wow you have <span style="color:blue">blue</span> eyes !</p>
</section>
<!--section to make a container where have many tag (section) "It's a semantic tag where we can get easily about the purpose of that tag"-->
Hello everybody !
<p> i am not professional <!--paragraph(p)-->
<b>i am beginner</b> <!--bold(b)-->
</p>
<strong>www.strong.com</strong> <!--bold for importance(strong) "It's a semantic tag where we can get easily about the purpose of that tag"-->
<div>
<a href="https://www.instagram.com/">Instagram</a> <!--anchor(a)-Atrribute_tag , href(location_link)-attribute -->
</div>
<ol> <!--Ordered_list(ol)-Container_tag-->
Breakfast :
<li>boiled egg</li> <!--List_item(li)-->
<li>bread</li>
<li>salad</li>
<li>yogurt</li>
<li>insta check</li>
</ol>
<ul> <!--Unordered_list(ul)-Container-tag-->
Lunch :
<li>shower</li>
<li>reading</li>
<li>web designing</li>
</ul>
<button>button</button> <!--Button(button)-->
<input type="text"> <!--for taking input(input)-->
<div>
<img src="https://mythemeshop.com/wp-content/uploads/2017/06/Is-it-worth-hiring-a-WordPress-Web-Designer-Featured-Image.jpg"></img> <!--image(img)-Attribute_tag , src(source_location)-attribute -->
<img src="images/hr.png">
</div>
<input type="text">
<br>
<button>click</button>
</body>
</html>