-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (38 loc) · 806 Bytes
/
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
<html>
<!-- Please add the CSS Style to h1, h2 and p tags here -->
<head>
<style>
h1,h2
{
color: Red;
background: Black;
font-size:200%;
text-align: Centre;
}
/* h4 is added in Remote Repo here */
h4
{
color: Blue;
background: Black;
font-size: 600%;
text-align: Centre;
}
p
{
color: Blue;
background: Black;
text-align: Centre;
}
</style>
</head>
<body>
<h1> This is my first h1 header </h1>
<p> This is Paragraph one </p>
<h4> This is the heading added in Local Repository </h4>
<!-- Remote paragraph is added here -->
<p>This is message added in Remote Repository</p>
<p>This is paragraph added in the Local in line# 40</p> <!-- Add in Local -->
<h2> This is the heading added in Remote Repository </h2>
<p> This is Paragraph added in Remote Repository</p>
</body>
</html>