forked from dhg/Skeleton
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathempty.html
48 lines (40 loc) · 1.71 KB
/
empty.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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
<meta http-equiv="cleartype" content="on">
<meta name="description" content="">
<meta name="author" content="">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no">
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="400">
<meta name="theme-color" content="#fff">
<meta name="apple-mobile-web-app-status-bar-style" content="#fff">
<title>My website</title>
<link rel="stylesheet" href="https://tomas.github.io/skel.css/dist/0.5/skel.min.css">
<!-- <link rel="stylesheet" href="dist/latest/skel.css"> -->
<link rel="icon" type="image/png" href="images/favicon.png">
</head>
<body>
<div class="container">
<div class="grid mt-50">
<h2>An example page</h2>
<div class="width-one-half mb-25">
<p>This HTML page is a placeholder with the CSS. It's just waiting for you to add some content!</p>
<button>Here's a button!</button>
</div>
<div class="width-one-half mb-25">
<p>This a second column. For filling up content, don't forget your <a href="https://lipsum.com/feed/html">Lorem Ipsum</a>. For pictures, there's always <a href="https://picsum.photos/">Picsum Photos</a>.</p>
<a href="#" class="primary button">Here's a button link</a>
</div>
</div>
<hr />
<div style="display: grid; grid-template-columns: 1fr auto; gap: 2rem;">
<input placeholder="Search" type="search">
<button class="primary search-button">Buscar</button>
</div>
</div>
</body>
</html>