-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (64 loc) · 3.22 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
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="index.css" />
</head>
<body>
<div class="hero">
<div class="formContainer">
<h1 class="heroTitle">Buzzworthy</h1>
<h2 class="heroDescription">Easily detect a bulls#*t project pitch</h2>
<input type="text" name="title" class="input" placeholder="Type in a project site address" />
<button class="submit">Check for bulls#*t!</button>
<div class="loaderContainer">
<p class="loaderText">Starting up the blockchain</p>
<div class="loader">
<div class="progress"></div>
</div>
</div>
<div class="resultContainer">
<p class="result">Congratulations! Your project is grade A certified bullshit!</p>
<button class="reset">Reset</button>
</div>
</div>
</div>
<div class="boasting">
<h1 class="boastingTitle">Made with the latest technologies</h1>
<div class="techContainer">
<div class="rowContainer">
<div class="product">
<img class="productImage" src="https://upload.wikimedia.org/wikipedia/commons/thumb/1/11/TensorFlowLogo.svg/1920px-TensorFlowLogo.svg.png" />
</div>
<div class="product">
<img class="productImage" src="https://cdn-images-1.medium.com/max/1600/1*3SVfBkNZI2f-sspiq59xcw.png" />
</div>
<div class="product">
<img class="productImage" src="https://d1.awsstatic.com/PAC/kuberneteslogo.eabc6359f48c8e30b7a138c18177f3fd39338e05.png" />
</div>
<div class="product">
<img class="productImage" src="https://cdn-images-1.medium.com/max/2000/1*s-YgL1NW7evYyCBWI-7w8Q.png" />
</div>
</div>
<div class="rowContainer">
<div class="product">
<img class="productImage" src="https://raw.githubusercontent.com/graphql-compose/graphql-compose/master/docs/logo.png" />
</div>
<div class="product">
<img class="productImage" src="https://en.bitcoinwiki.org/upload/en/images/7/7a/Ethereum11.png" />
</div>
<div class="product">
<img class="productImage" src="http://www.logospng.com/images/11/dev-confirms-the-power-of-microsofts-azure-cloud-11087.png" />
</div>
<div class="product">
<img class="productImage" src="/nunjs.png" />
</div>
</div>
</div>
</div>
<div class="footer">
<p class="footerText">Copyright JBM llc 2019. All rights reserved</p>
<p class="footerText">Liked this site? <a class="link" href="mailto:joaomssmota@gmail.com">Contact me!</a></p>
</div>
<script src="index.js"></script>
</body>
</html>