-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (73 loc) · 3.65 KB
/
index.html
File metadata and controls
81 lines (73 loc) · 3.65 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-123803678-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-123803678-1');
</script>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="author" content="Steven Johnson & Ashely Brown">
<meta name="description" content="An easy-to-use button maker for all web developers.">
<meta name="keywords" content="css buttons, html buttons, btnmkr, html, css, web development, web dev, web developer, web design">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.0/normalize.min.css" />
<link rel="stylesheet" href="https://unpkg.com/flexboxgrid2@7.1.0/flexboxgrid2.css">
<link rel="stylesheet" href="css/app.css">
<link rel="stylesheet" href="css/hover.css">
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,700" rel="stylesheet">
<title>An easy-to-use button maker for all web developers - btnmkr</title>
</head>
<body>
<!--Heading-->
<header class="homepageHeader">
<div class="container">
<div class="row center-xs middle-xs">
<div class="col-xs-12 ">
<img src="img/btnmkr_logo.svg" alt="btnmkr logo" width="200">
<p class="version">v0.0.2</p>
<h2>An easy-to-use button maker<br>for all web developers</h2>
<button class="btn btn_solid hvr-grow" onclick="location.href='create';">get started</button>
<button class="btn btn_outline hvr-grow" onclick="location.href='https://github.com/TechJohnson/btnmkr';">gitHub</button>
</div>
</div>
</div>
</header>
<!--Contributors-->
<section class="contributors">
<div class="row center-xs">
<div class="col-xs-12">
<h3>Project Creators</h3>
</div>
<div class="col-xs-12 col-md-2">
<a href="http://twitter.com/techjohnson"><img src="img/me.png" alt="Steven Johnson"></a>
<p>Steven Johnson</p>
<a href="http://twitter.com/techjohnson">@techjohnson</a>
</div>
<div class="col-xs-12 col-md-2">
<a href="http://twitter.com/proevilz"><img class="proevilz" src="img/proevilz.png" alt="Ashley Brown"></a>
<p>Ashley Brown</p>
<a href="http://twitter.com/proevilz">@proevilz</a>
</div>
</div>
<hr>
</section>
<!--Footer-->
<footer>
<div class="container">
<div class="row center-xs middle-xs">
<div class="col-xs-12 col-md-2 middle-xs">
<a href="https://twitter.com/btnmkr"><img src="img/twitter.svg" alt="" width="25"><span>Twitter</span></a>
</div>
<div class="col-xs-12 col-md-2 middle-xs">
<a href="https://github.com/TechJohnson/btnmkr"> <img src="img/github.svg" alt="" width="25"><span>GitHub</span></a>
</div>
</div>
</div>
</footer>
</body>
</html>