-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
28 lines (27 loc) · 881 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
<!DOCTYPE html>
<head>
<meta charset="utf-8" />
<title>Github Pages Tutorial App</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="container">
<h1>Github Pages Tutorial App</h1>
<p>
This is a sample static html and css app deployed using Github Pages
</p>
<div class="button-container">
<a
href="https://github.com/kavinvalli/gh-pages-tutorial"
target="_blank"
><button>Visit Repository</button></a
>
<a
href="https://livecode247.com/deploying-a-static-html-and-css-site-using-github-pages"
target="_blank"
><button>Visit Blog Post</button></a
>
<a href="https://elephino.github.io/github-pages/Portfolio-1/" target="_blank"><button>Visit Portfolio 1</button></a>
</div>
</div>
</body>