-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (66 loc) · 2.82 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Buzzwordify - Add Buzzwords to your Pitch</title>
<meta name="description" content="Add buzzwords to your pitch. Get 2x money from VCs, win hackathons.">
<meta name="keywords" content="buzzword, buzzwords, buzzwordify, pitch">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Open+Sans:400,400i,700" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="main.css" />
</head>
<body>
<div class="container">
<h1>Buzzwordify</h1>
<h3>Add buzzwords to your pitch. Get 2x money from VCs. Win hackathons.</h3>
<div class="forms">
<form action="#">
<label for="pitch">Your Pitch:</label>
<input type="text" placeholder="An app for X that does Y" type="text" name="pitch" id="pitch">
<button>Buzzwordify</button>
</form>
<form>
<label for="buzzwordified">Your new, 🔥 pitch:</label>
<input type="text" placeholder="Enter pitch above to generate" name="buzzwordified" id="buzzwordified">
<small>Generated pitch might not be perfect and I recommend proofreading it before spamming VCs.</small>
</form>
</div>
<div class="content">
<div class="item">
<h3>Why?</h3>
<p><em><a href="https://techcrunch.com/2017/12/21/long-island-iced-tea-shares-went-gangbusters-after-changing-its-name-to-long-blockchain/" target="_blank">Why not?</a></em></p>
</div>
<div class="item">
<h3>How does this work?</h3>
<p>Buzzwordify uses an NLP-powered AI to generate pitches.</p>
<small>Honestly, it uses just some basic string-parsing. I wrote this just to get some VC money.</small>
</div>
<div class="item">
<h3>This actually got me some VC money, how do I thank you?</h3>
<p><a href="https://twitter.com/umanghome">@ me</a>.</p>
</div>
<div class="item">
<h3>This actually won me a hackathon, how do I thank you?</h3>
<p><a href="https://twitter.com/umanghome">@ me</a>.</p>
</div>
<div class="item">
<h3>I want to add more buzzwords.</h3>
<p>Sure, <a href="https://github.com/umanghome/buzzwordify">here's the code</a>.</p>
</div>
</div>
<div class="footer">
<p>Made by <a href="https://umanggalaiya.in">Umang</a>.</p>
</div>
</div>
<script src="main.js"></script>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-117947053-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'UA-117947053-2');
</script>
</body>
</html>