-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (42 loc) · 1.39 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Melvin Adu - Abstract Art and Photography</title>
<link rel="stylesheet" href="base.css">
<link rel="stylesheet" href="style.css">
<meta property="og:title" content="Melvin Adu">
<meta property="og:description" content="Portfolio of abstract art and photography by Toronto-based artist">
<meta property="og:image" content="social.jpg">
</head>
<body>
<main>
<header>
<h1>Melvin Adu</h1>
<p>Abstract Art + Photographer</p>
</header>
<section>
<img src="image1.jpg" alt="Light piece #231">
</section>
<section>
<img src="image2.jpg" alt="Gradient piece #039">
</section>
<section>
<img src="image3.jpg" alt="Gradient piece #039a">
</section>
<section>
<img src="image4.jpg" alt="Light piece #13">
</section>
<form>
<label>If you like my work, please consider sending me a tip!</label>
<input value="0.01"> <span>ETH</span>
<button>Tip</button>
</form>
</main>
<!-- add https://web3js.readthedocs.io/en/v1.7.1/ to project in order to convert ETH to Wei -->
<script src="web3.js"></script>
<!-- add tip script to website -->
<script src="tip.js"></script>
</body>
</html>