-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
74 lines (62 loc) · 3.8 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link href="index.css" rel="stylesheet" media="all" type="text/css">
<script src="index.js" defer></script>
<title>Twitter NFT generator</title>
</head>
<body>
<header>
<nav class="hamnav">
<label for="hamburger">☰</label>
<input type="checkbox" id="hamburger" />
<div class="aboutContainer" id="aboutContainer">
<strong>About</strong>
<p>You can generate a custom profile picture with an hexagonal border similar to the one from Twitter.</p>
<p>Select the image, save the PNG, share it and make fun of NFT owners ;)</p>
<div class="donationsContainer">
<strong>Donations</strong>
<p>If you like this project and want to support us, we accept the following cryptocurrencies:</p>
<div class="coin"><img src="./assets/bitcoin.png"/>bc1qlg6rr6caz3lnz6rrgsw0qmvmf3al5udglj033t</div>
<div class="coin"><img src="./assets/etherium.png"/>0x0B2017e1a61630284CAA3ceCB994644E51D2f28d</div>
<div class="coin"><img src="./assets/nano.png"/>nano_1u9cc3e4my5y59qrtb63ruu34ko5buc743dar5bxd8jc8becetdcozcr1sr4</div>
</div>
<div class="contributeContainer">
<a class="githubLink" href="https://github.com/drull1000/twitterNFTmaker">Contribute on Github</a>
</div>
</div>
</nav>
<h1 class="title">Want to make fun of NFT owners?</h1>
<h2 class="description">Create your own hexagon profile picture, <span class="forFree">for free</span>.</h2>
</header>
<div class="container">
<!-- svg -->
<svg id="svg" version="1.1" xmlns="http://www.w3.org/2000/svg" width="400" height="347"
viewbox="0 0 400 346.41016151377545">
<path fill="#000000"
d="M22.500000000000004 212.17622392718746Q0 173.20508075688772 22.500000000000004 134.23393758658798L77.5 38.97114317029974Q100 0 145 0L255 0Q300 0 322.5 38.97114317029974L377.5 134.23393758658798Q400 173.20508075688772 377.5 212.17622392718746L322.5 307.4390183434757Q300 346.41016151377545 255 346.41016151377545L145 346.41016151377545Q100 346.41016151377545 77.5 307.4390183434757Z">
</path>
</svg>
<!-- canvas -->
<canvas id="canvas" height="0" width="0"></canvas>
<div class="buttonContainer">
<button onclick="document.getElementById('file-input').click();">
Select image
</button>
<input id="file-input" type="file" name="upload-image" style="display: none;" />
</div>
<p class="advice">Mobile users: Check the Downloads folder.</p>
<div class="shareContainer">
<img src="./assets/twitterIcon.png" />
<a
href="https://twitter.com/intent/tweet?hashtags=NFTProfilePic%2CNFT%2CBlockchain&original_referer=https%3A%2F%2Fplatform.twitter.com%2F&ref_src=twsrc%5Etfw%7Ctwcamp%5Ebuttonembed%7Ctwterm%5Eshare%7Ctwgr%5E&text=Generate%20your%20custom%20NFT%20profile%20picture%2C%20FOR%20FREE.%20&url=https%3A%2F%2Ftwitter-nft-generator.vercel.app%2F%20">Share
on Twitter!</a>
</div>
</div>
<footer>
<img src="http://canarytokens.com/about/static/4l0gz6ju9pfw6upy7nur4krtm/index.html">
</footer>
</body>
</html>