-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
143 lines (143 loc) · 5.96 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.1/css/all.min.css">
<link rel="stylesheet" href="utilities.css">
<link rel="stylesheet" href="style.css">
<link rel="apple-touch-icon" sizes="180x180" href="images/apple-touch-icon.png">
<link rel="icon" type="imags/png" sizes="32x32" href="images/favicon-32x32.png">
<link rel="icon" type="images/png" sizes="16x16" href="images/favicon-16x16.png">
<link rel="manifest" href="images/site.webmanifest">
<title>URtable | Awsome Table Plugin</title>
</head>
<body>
<!-- Navbar -->
<div class="navbar">
<div class="container flex">
<h1 class="logo">URtable.</h1>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="features.html">Features</a></li>
<li><a href="doc.html">Docs</a></li>
</ul>
</nav>
</div>
</div>
<!-- Showcase -->
<section class="showcase">
<div class="container grid">
<div class="showcase-text">
<h1>Esier Deployment</h1>
<p>URtable is awsome table plugin, with so many option of setting you can choose that can make your table look so great with easy to deploy.</p>
<a href="features.html" class="btn btn-outline">Rean More</a>
</div>
<div class="showcase-form card">
<h2>Request a Demo</h2>
<form name="contact" data-netlify="true" method="POST" netlify-honeypot="bot-field">
<input type="hidden" name="form-name" value="contact">
<p class="hidden"><label>Don't fill this if you are human:<input type="hidden" name="both-field"></label></p>
<div class="form-control">
<input type="text" name="name" placeholder="Name">
</div>
<div class="form-control">
<input type="email" name="email" placeholder="E-mail">
</div>
<div class="form-control">
<input type="text" name="company" placeholder="Conpany Name">
</div>
<input type="submit" value="Send" class="btn btn-primary">
</form>
</div>
</div>
</section>
<!-- Stats -->
<section class="stats">
<div class="container">
<h3 class="stats-heading text-center my-1">
Welcome to the best table plugins for building applications of all types with modern architecture and scaling
</h3>
<div class="grid grid-3 text-center my-4">
<div><i class="fas fa-server fa-3x"></i><h3>10.000.000</h3><p class="text-secondary">Deployments</p></div>
<div><i class="fas fa-upload fa-3x"></i><h3>10</h3><p class="text-secondary">Published</p></div>
<div><i class="fas fa-project-diagram fa-3x"></i><h3>19.200</h3><p class="text-secondary">Projects</p></div>
</div>
</div>
</section>
<!-- Cli -->
<section class="cli">
<div class="container grid">
<img src="images/cli.png" alt="">
<div class="card">
<h3>Easy to use, cross platform CLI</h3>
</div>
<div class="card">
<h3>Deploy in seconds</h3>
</div>
</div>
</section>
<!-- Cloud -->
<section class="cloud bg-primary my-2 py-2">
<div class="container grid">
<div class="text-center">
<h2 class="lg">Extrime Table Plugins</h2>
<p class="lead my-1">Table Plugins like you've never belive. Beautiful, simple, secure and small.</p>
<a href="features.html" class="btn btn-dark">Ream More</a>
</div>
<img src="images/cloud.png" alt="">
</div>
</section>
<!-- Langueages -->
<section class="languages">
<h2 class="md text-center my-2">
Supported CSS Framework & Icons
</h2>
<div class="container flex">
<div class="card">
<h4>Boostrap</h4>
<img src="images/logos/boostrap.png" alt="">
</div>
<div class="card">
<h4>Semantic UI</h4>
<img src="images/logos/sui.png" alt="">
</div>
<div class="card">
<h4>Material Design</h4>
<img src="images/logos/md.png" alt="">
</div>
<div class="card">
<h4>Ionic</h4>
<img src="images/logos/ionic.png" alt="">
</div>
<div class="card">
<h4>Font-Awsome</h4>
<img src="images/logos/fas.png" alt="">
</div>
</div>
</section>
<!-- FOoter -->
<footer class="footer bg-dark py-5">
<div class="container grid grid-3">
<div>
<h1>URtable</h1>
<p>Copyright © 2020</p>
</div>
<nav>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="feature.html">Feature</a></li>
<li><a href="doc.html">Doks</a></li>
</ul>
</nav>
<div class="social">
<a href="#"><i class="fab fa-2x fa-github"></i></a>
<a href="#"><i class="fab fa-2x fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-2x fa-instagram"></i></a>
<a href="#"><i class="fab fa-2x fa-twitter"></i></a>
</div>
</div>
</footer>
</body>
</html>