-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBasics.html
More file actions
35 lines (28 loc) · 914 Bytes
/
Copy pathBasics.html
File metadata and controls
35 lines (28 loc) · 914 Bytes
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
<h1>Web Development</h1> //heading tag
<h2>HTML</h2> //size reduces
<h2>CSS</h2>
<h3>Bootstrap</h3>
<p></p> //paragraph tag
<a href="https://www.myntra.com/" >Myntra</a> //anchor tag and href -hyperlink reference
<center>
<img src="Profile.jpeg" alt="Pavithra" width="100px"><br> //image tag , src -source of image ,br -break tag-avoids writing in the same line
<a href="https://www.youtube.com/watch?v=1yBc11-t1Iw">Sunflower</a> //alt-alternative text for image
</center>
<ol> //ordered list
<li>
one
</li>
<li>
two
</li>
</ol>
<ul>
<li>
one
</li>
<li>
two
</li>
</ul>
<iframe src="https://tamilrockershd.online/home/"></iframe> //iframe tag is used to embed another webpage within the current webpage.
<hr> //horizontal rule tag -used to separate content with a horizontal line