-
Notifications
You must be signed in to change notification settings - Fork 2
/
example.html
91 lines (79 loc) · 3.15 KB
/
example.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
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="http://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.6.1/css/font-awesome.min.css" rel="stylesheet" type="text/css">
<link href="http://v4.pingendo.com/assets/bootstrap/themes/purple.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="bg-inverse p-y-3 section text-inverse">
<div class="container">
<div class="row">
<div class="col-lg-12 p-y-3 text-xs-center">
<h1 class="display-2 m-y-2 ">Unfuck My Email</h1>
<h2>Easy email templates for all those shitty little business conversations</h2>
</div>
</div>
</div>
</div>
<div class="p-y-3 section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<p class="lead text-xs-center">Need to email a client about a contract or send a follow up email? Stop avoiding the inevitable with Youtube and Reddit as distractions. Answer a couple questions and get an email that you can copy and send!</p>
</div>
</div>
</div>
</div>
<div class="p-y-3 section">
<div class="container">
<div class="row">
<div class="col-lg-12 text-muted">
<h1 class="display-3 m-y-2 text-muted text-xs-center">I Need To...</h1>
</div>
</div>
<div class="row">
<div class="col-lg-4">
<i class="center-block fa fa-5x fa-fw m-y-2 text-primary fa-file-text"></i>
<p class="m-y-2 text-xs-center">Send a contract over to a new client</p>
</div>
<div class="col-lg-4">
<i class="center-block fa fa-5x fa-fw m-y-2 text-primary fa-clock-o"></i>
<p class="m-y-2 text-xs-center">Get my client to respond to a deadline.</p>
</div>
<div class="col-lg-4">
<i class="center-block fa fa-5x fa-fw m-y-2 text-primary -upload fa-commenting-o"></i>
<p class="m-y-2 text-xs-center">Stop scope creep in a project</p>
</div>
</div>
</div>
</div>
<div class="bg-info p-y-0 section">
<div class="container">
<div class="row">
<div class="col-lg-12">
<address class="m-y-3 text-xs-center">
<strong>Company name, Inc.</strong>
<br>795 Folsom Ave, Suite 600
<br>San Francisco, CA 94107
<br>
<abbr title="Phone">P:</abbr>(123) 456-7890</address>
</div>
</div>
<div class="p-y-3 row text-xs-center">
<div class="col-xs-4">
<a><i class="fa fa-5x fa-fw fa-facebook"></i></a>
</div>
<div class="col-xs-4">
<a><i class="fa fa-5x fa-fw fa-twitter"></i></a>
</div>
<div class="col-xs-4">
<a><i class="fa fa-5x fa-fw fa-instagram"></i></a>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="http://cdnjs.cloudflare.com/ajax/libs/jquery/2.0.3/jquery.min.js"></script>
<script type="text/javascript" src="https://cdn.rawgit.com/twbs/bootstrap/v4-dev/dist/js/bootstrap.js"></script>
</body>
</html>