forked from kothamaddisiva/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.jsp
More file actions
37 lines (32 loc) · 634 Bytes
/
Copy pathindex.jsp
File metadata and controls
37 lines (32 loc) · 634 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
36
37
<!DOCTYPE html>
<html>
<head>
<style>
a:link {
color: green;
background-color: transparent;
text-decoration: none;
}
a:visited {
color: pink;
background-color: transparent;
text-decoration: none;
}
a:hover {
color: red;
background-color: transparent;
text-decoration: underline;
}
a:active {
color: yellow;
background-color: transparent;
text-decoration: underline;
}
</style>
</head>
<body>
<h2>CICD PIPELINE</h2>
<p>Please click on the below link to see my application</p>
<h1><a href="http://rathasaradhi.azurewebsites.net/" target="_blank">Click Here</a> </h1>
</body>
</html>