-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path3 symantic tags.html
More file actions
54 lines (52 loc) · 1.76 KB
/
3 symantic tags.html
File metadata and controls
54 lines (52 loc) · 1.76 KB
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
<!DOCTYPE html>
<html lang="en"><!--this defines languages-->
<!--this is my first code-->
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!--header tag ,inside header tag pre tag is used,paragraph tag is used-->
<header>
<pre>
<h1>MY PORYFOLIO</h1>
</pre>
<!--main tag,inside main tag section tag is used-->
<main>
<!--section is different from paragraph-->
<section>school qualification</section>
<section>college qualification</section>
<!--article tag-->
<article>some story we can write and we can give my brief description</article>
<!--target tag,we can link the content in any article and section-->
<a href="https://www.google.com/">google
<!--by clicking image we can go to google-->
<img src="https://tse3.mm.bing.net/th?id=OIP.SqEICC59PL1VrdefhGEqqgHaCg&pid=Api&P=0&h=180"alt="chitra" height="50"/>
</a>
<br>
<!--aside tag-->
<aside>content which is not useful,links adds which are not useful</aside>
<!--div tag, not have any particular task,not have any meaning-->
<!--div tag makes sectors-->
<div>
<div style="background-color: blue";>
<p>div tag usage</p>
<p>hello</p>
<p>hii</p>
</div>
<div>
<div style="background-color: red";>
<p>div tag usage</p>
<p>chal</p>
<p>nikal</p>
</div>
<!--span tag ,jitni jagah utna space-->
<span>bye style="background-color: pink";</style></span>
</main>
<!--footer tag-->
<footer>
<h2>contact me at realrudraaydav@gmail.com</h2>
</footer>
</body>
</html>