File tree 5 files changed +126
-0
lines changed
5 files changed +126
-0
lines changed Original file line number Diff line number Diff line change 14
14
<Content Include =" fonts\glyphicons-halflings-regular.woff" />
15
15
<Content Include =" fonts\glyphicons-halflings-regular.ttf" />
16
16
<Content Include =" fonts\glyphicons-halflings-regular.eot" />
17
+ <Content Include =" Hellow world.html" />
18
+ <Content Include =" List.html" />
17
19
<Content Include =" Scripts\scrolling-nav.js" />
18
20
<Content Include =" index.html" />
19
21
<Content Include =" Scripts\bootstrap.js" />
20
22
<Content Include =" Scripts\jquery-3.3.1.js" />
23
+ <Content Include =" Tagging and Attribute.html" />
24
+ <Content Include =" text formatting.html" />
21
25
</ItemGroup >
22
26
</Project >
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+
3
+ < html lang ="en " xmlns ="http://www.w3.org/1999/xhtml ">
4
+ < head >
5
+ < meta charset ="utf-8 " />
6
+ < title > First Code</ title >
7
+ < h1 > Hello World.</ h1 >
8
+ </ head >
9
+ < body >
10
+
11
+ </ body >
12
+ </ html >
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en " xmlns ="http://www.w3.org/1999/xhtml ">
3
+ < head >
4
+ < meta charset ="utf-8 " />
5
+ < title > list</ title >
6
+ </ head >
7
+ < body >
8
+ < h1 title ="unordered "> unordered list</ h1 >
9
+ < ul >
10
+ < li > Asus</ li >
11
+ < li > Xiaomi</ li >
12
+ < li > Dell</ li >
13
+ < li > Samsung</ li >
14
+ </ ul >
15
+ < ul type ="square ">
16
+ < li > Asus</ li >
17
+ < li > Xiaomi</ li >
18
+ < li > Dell</ li >
19
+ < li > Samsung</ li >
20
+ </ ul >
21
+ < ul type ="circle ">
22
+ < li > Asus</ li >
23
+ < li > Xiaomi</ li >
24
+ < li > Dell</ li >
25
+ < li > Samsung</ li >
26
+ </ ul >
27
+
28
+
29
+ < h1 title ="ordered "> ordered list</ h1 >
30
+ < ol >
31
+ < li > Xiaomi</ li >
32
+ < li > Dell</ li >
33
+ < li > Samsung</ li >
34
+ < li > Asus</ li >
35
+ </ ol >
36
+ < ol type ="a ">
37
+ < li > Xiaomi</ li >
38
+ < li > Dell</ li >
39
+ < li > Samsung</ li >
40
+ < li > Asus</ li >
41
+ </ ol >
42
+ < ol type ="A ">
43
+ < li > Xiaomi</ li >
44
+ < li > Dell</ li >
45
+ < li > Samsung</ li >
46
+ < li > Asus</ li >
47
+ </ ol >
48
+ < ol type ="i ">
49
+ < li > Xiaomi</ li >
50
+ < li > Dell</ li >
51
+ < li > Samsung</ li >
52
+ < li > Asus</ li >
53
+ </ ol >
54
+ < ol type ="I ">
55
+ < li > Xiaomi</ li >
56
+ < li > Dell</ li >
57
+ < li > Samsung</ li >
58
+ < li > Asus</ li >
59
+ </ ol >
60
+ </ body >
61
+ </ html >
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+
3
+ < html lang ="en " xmlns ="http://www.w3.org/1999/xhtml ">
4
+ < head >
5
+ < meta charset ="utf-8 " />
6
+ < title > Tagging and Attribute</ title >
7
+ < h6 > Code here</ h6 >
8
+ < h5 > Code here</ h5 >
9
+ < h4 > Code here</ h4 >
10
+ < h3 > Code here</ h3 >
11
+ < h2 > Code here</ h2 >
12
+ < h1 > Code here</ h1 > < hr >
13
+ </ head >
14
+ < body >
15
+ < p > Don't get panic.< br > <!--Describe your code ---> </ p >
16
+
17
+ < p title ="Redwan Sharafat Kabir "> This is Munna</ p >
18
+
19
+ < pre >
20
+ No code
21
+ here
22
+ </ pre >
23
+
24
+ </ body >
25
+ </ html >
Original file line number Diff line number Diff line change
1
+ <!DOCTYPE html>
2
+ < html lang ="en " xmlns ="http://www.w3.org/1999/xhtml ">
3
+ < head >
4
+ < meta charset ="utf-8 " />
5
+ < title > text formatting</ title >
6
+ </ head >
7
+ < body >
8
+ < p > a simple < i title ="italic "> first</ i > or < em title ="italic "> first</ em > paragraph</ p >
9
+ < p > a simple < b title ="bold "> second</ b > or < strong title ="bold "> second</ strong > paragraph</ p >
10
+ < p > a simple < u title ="underline "> third</ u > or < ins title ="underline "> third</ ins > paragraph</ p >
11
+ < p > a simple < b > < u > < i title ="italic + bold + underline "> fourth</ i > </ u > </ b > paragraph</ p >
12
+ < p > A SIMPLE < small title ="small size "> FIFTH</ small > PARGRAPH</ p >
13
+ < p > a simple < del title ="delete "> seventh</ del > sixth paragraph</ p >
14
+ < p > a simple 8< sup title ="power "> th</ sup > paragraph</ p >
15
+ < p > the atoomic mass of carbon is C< sub title ="lower tag "> 12</ sub > </ p >
16
+
17
+ < p > < br > < br > this is a simple HTML5 < mark title ="color mark "> paragraph</ mark > </ p >
18
+
19
+ < dl >
20
+ < br > < dt title ="define term "> 2019</ dt >
21
+ < dd title ="define description "> 2019 is a great year</ dd >
22
+ </ dl >
23
+ </ body >
24
+ </ html >
You can’t perform that action at this time.
0 commit comments