-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
55 lines (55 loc) · 1.67 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
50
51
52
53
54
55
<!DOCTYPE html>
<html lang="en">
<head>
<!--its works on the backend -->
<meta charset="UTF-8" />
<!--character encoding, viewport settings, or description -->
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>My travel blog</title>
</head>
<body>
<h1><i> Travel Blog</i></h1>
<div>
<p>
Every <b>person</b> who are <i>alive</i> wants to go some where to make
new friends or <em>enrich</em> his/her mind by traveling to a place.
That's why I also traveled to a place and that is Jaflong, Sylhet.Which,
is 400 kilometers away form Dhaka,Bangladesh<button>Read More</button>
</p>
</div>
<span><b>What i have bought</b></span>
<ol>
<li>Stone</li>
<li>Teas</li>
<li>Monipuri bed sheet</li>
</ol>
<span><b>My favourite food</b></span>
<h2>The meals which were consumed by me more frequently are:</h2>
<ul>
<li>Khichuri</li>
<li>Polao</li>
<li>Byriani</li>
</ul>
<figure>
<img
src="Beef-Khichuri-500x500.jpg"
alt="Beef khichuri"
width="150"
height="150"
/>
<figcaption>Beef Khichuri</figcaption>
<img src="download.jpeg" alt="Polao" width="150" height="150" />
<figcaption>Polao</figcaption>
<img src="byriani.jpg" alt="byriani" width="150" height="150" />
<figcaption>byriani</figcaption>
</figure>
<br />
<br />
<h1>Hey listen some music</h1>
<p>
<a href="https://www.youtube.com/watch?v=dxytyRy-O1k" target="_blank"
>Burn it down</a
>
</p>
</body>
</html>