-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (31 loc) · 1.29 KB
/
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
<html>
<head>
<meta charset=utf-8 />
<title>WebsiteWithLinks</title>
<style>
#foo {
position:absolute;
width:300px;
height:200px;
bottom:0px;
right:25%;
left:50%;
margin-left:-150px;
}
</style>
</head>
<body>
<h1><center>Website with links!</center></h1>
<center><img src = "img/halloween_image.jpeg"/></center>
<p><center>Welcome to this demo. In this website there are links to two dashboards</center></p>
<p><center>If you click on the buttons below it will take you to the dashbard.
This is fully built on HTML. Clicking the button will take you to a new window</center></p>
<p><center>This has been hosted for free on GitHub</center></p>
<hr/>
<h2><center>links below:</center></h2>
<div class="action_btn" div id="foo">
<center><button class="btn btn-success" onclick=" window.open('https://aramasethu.shinyapps.io/rshinyapp/','_blank')"> R shiny Dashboard</button>
<button class="btn btn-success" onclick=" window.open('https://github.com/aramasethu/GRA_project','_blank')"> Github</button></center>
</div>
</body>
</html>