-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsecond.html
More file actions
85 lines (79 loc) · 2.52 KB
/
second.html
File metadata and controls
85 lines (79 loc) · 2.52 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mozilla Browser</title>
<style>
body{background-color: goldenrod;}
.raj{text-align: center;
background-color: darkkhaki;
color:cyan;
font-family: Georgia;
}
.hello{
color: crimson;
font-weight: bolder;
}
.moz{
color:rgb(72, 0, 255);font-size: larger;}
#location{color: yellow;font-family: 'Franklin Gothic Medium';text-transform: uppercase;}
</style>
</head>
<body>
<h1 class="raj">Mozilla is Cool</h1>
<img src="mlogo.jfif" alt="Firefox Logo" height="200px" width="250px">
<p class="hello">At Mozilla, we're a Global community of : </p>
<!-- Bullets - use <UL> Tag - Unordered Lists
Numbering - use <OL> Tag - Ordered Lists
-->
<ul>
<li>Thinkers</li>
<li>Technologists</li>
<li>Builders</li>
</ul>
<p class="moz">
Working together to keep the Internet alive and
accessible, so people worldwide can be informed
contributors and creators of the Web. We believe
this act of human collaboration across an open
platform is essential to individual growth and our
collective future.
</p>
<h5 id="location">Our Locations</h5>
<ol>
<li>Asia Pacific</li>
<li>Indian Sub Continent</li>
<li>North America</li>
<li>Europe</li>
</ol>
<hr>
<h1 class="raj">Web Application</h1>
<h2>Static content</h2>
<ul type="square">
<li>HTML5</li>
<li>CSS3</li>
<ul type="circle">
<li>Internal Style Sheeet</li>
<li>External Style Sheet</li>
</ul>
<li>BootStrap</li>
<li>Angular</li>
</ul>
<h2>Dynamic Content</h2>
<ol type="I">
<li>Servelets</li>
<li>JSP</li>
<li>Spring Framework</li>
<ol type="a">
<li>Spring boot</li>
<li>JPA</li>
</ol>
<li>ASP.Net</li>
</ol>
<hr>
<img src="wlogo.jpg" width="50%" height="50%">
<img src="https://cdna.artstation.com/p/assets/images/images/025/873/914/large/sagar-kumar-img-20200418-142328.jpg?1587201549" width="50%" height="50%">
</body>
</html>