-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
52 lines (46 loc) · 1.66 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>ajaxCom</title>
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="icon" type="image/png" href="img/logo-favicon.png" itemprop="thumbnailUrl">
<style type="text/css" rel="stylesheet">
body { font-family: sans-serif; font-size: 1rem; margin: 0; color: #333; }
img { vertical-align: middle; }
ul{ list-style: none; padding: 0; margin-bottom: 0;}
li{ margin-bottom: 2px; line-height: 100%; }
h1{ color: #835462; margin-top: 0; }
a{
background-color: #EEE; color: #333; text-decoration: none; display: block; padding: 5px;
transition-duration: 0.2s;
}
a:hover{ background-color: #825261; color: #FFF; }
.container{
width: 50%; max-width: 400px; min-width: 300px; margin: 5rem auto 0 auto; background-color: #EEE;
padding: 20px; border: 1px solid rgba(0,0,0,0.1);
}
</style>
</head>
<body>
<div class="container">
<h1><img src="img/logo.png" alt="ajaxCom Logo" /> ajaxCom</h1>
<ul>
<li>
<a href="demoHtml/index.html">Demo 1 - Simple</a>
</li>
<li>
<a href="demoHtml/login.html">Demo 2 - Login</a>
</li>
<li>
<a href="demoHtml/upload.html">Demo 3 - File Upload</a>
</li>
<li style="margin-top: 20px;">
<a href="https://github.com/timemrah/ajaxCom">Github Page</a>
</li>
</ul>
</div>
</body>
</html>