-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
117 lines (110 loc) · 4.59 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
<!doctype html>
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700|Source+Code+Pro:300,400,700' rel='stylesheet' type='text/css'>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>theWE</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
font-family: 'Source Sans Pro', sans-serif;
background: url('images/graygirl.jpg') no-repeat center center fixed;
background-color: rgb(33, 33, 33);
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
color: #3F3F3F;
width: 100%;
height: 100%;
margin: 0;
}
#main {
max-width: 760px;
margin: 8% auto;
}
h1,h2,h3 {
font-weight: normal;
}
h2,h3 {
font-family: 'Source Code Pro', monospace;
}
input {
-webkit-appearance: none;
-webkit-box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 1px 0px inset;
-webkit-rtl-ordering: logical;
-webkit-transition-delay: 0s, 0s;
-webkit-transition-duration: 0.15s, 0.15s;
-webkit-transition-property: border-color, box-shadow;
-webkit-transition-timing-function: ease-in-out, ease-in-out;
-webkit-user-select: text;
-webkit-writing-mode: horizontal-tb;
background-color: rgb(255, 255, 255);
border: 1px solid rgb(204, 204, 204);
box-shadow: rgba(0, 0, 0, 0.0745098) 0px 1px 1px 0px inset;
box-sizing: border-box;
color: rgb(85, 85, 85);
cursor: auto;
letter-spacing: normal;
padding: 6px 12px;
}
button {
-webkit-appearance: none;
-webkit-user-select: none;
-webkit-writing-mode: horizontal-tb;
align-items: flex-start;
background-color: #B3354D;
border: 1px solid #B3354D;
box-sizing: border-box;
color: #fff;
cursor: pointer;
font-size: 13px;
height: 32px;
margin: 0 0 5px 0;
padding: 6px 12px;
text-align: center;
touch-action: manipulation;
vertical-align: middle;
white-space: nowrap;
}
form {
padding-top: 20px;
}
form input, form button {
font-size: 16px;
font-family: 'Source Sans Pro', sans-serif;
}
/* Media query for mobile font size */
@media (max-width: 450px) {
body {
font-size: 12px;
}
}
</style>
</head>
<body>
<div id="main">
<h2>theWE.</h2>
<h1>VISION. SUPPORT. SUCCESS.</h1>
<h3>I want a community of women to see my ideas, listen to my goals, and critique my methods. I want to know women who believe in me and my product; women who will voice their support and recommend me to their friends and followers. I want to find and promote products by women. I want to be EMPOWERED.</h3>
<div>
<form accept-charset="UTF-8" action="https://formkeep.com/f/56acb05bf428" method="POST">
<input type="hidden" name="utf8" value="✓">
<input type="email" name="email" placeholder="Email" required>
<button type="submit">Join</button>
</form>
</div>
</div>
<!-- Google Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-62641707-1', 'auto');
ga('send', 'pageview');
</script>
</body>
</html>