-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (66 loc) · 4 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Book Cover Designs by Dewyan</title>
<link href="https://cdnjs.cloudflare.com/ajax/libs/tailwindcss/2.2.19/tailwind.min.css" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<script type='text/javascript' src='//pl23589019.profitablecpmrate.com/25/06/80/250680a4daabba326f00682259c7f90b.js'></script>
<script type='text/javascript' src='//pl23588969.profitablecpmrate.com/88/38/55/883855749cec93ac20a76b8c1c410319.js'></script>
</head>
<body class="bg-gray-100 text-gray-900 font-sans">
<header class="bg-white shadow-md">
<div class="container mx-auto p-6">
<h1 class="text-4xl font-extrabold tracking-tight text-gray-900">
Book Cover Designs by <span class="text-blue-600">Dewyan</span>
</h1>
<p class="text-lg mt-2">Professional Book Cover Designer</p>
</div>
</header>
<main class="container mx-auto p-6">
<section id="about" class="my-12">
<h2 class="text-3xl font-semibold mb-4">About Me</h2>
<p class="text-lg leading-relaxed">Hi! I am a <span class="highlight">professional book cover designer</span> based in <span class="highlight">Sri Lanka 🇱🇰</span>. I specialize in creating <span class="highlight">captivating and creative</span> book covers that draw readers in. Below is a showcase of my work.</p>
</section>
<section id="portfolio" class="my-12">
<h2 class="text-3xl font-semibold mb-4">My Work</h2>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
<!-- Portfolio Items -->
<div class="card">
<a href="portfolio/book-cover-1.html">
<img src="assets/salonivana_thumb.png" alt="Salonivana Book Cover" class="w-full h-64 object-cover rounded-t-lg">
<div class="p-4">
<h3 class="text-xl font-bold">Salonivana - සැලොනිවන</h3>
<p class="text-gray-700">A mind boggoling short story collection by the Designer himself!</p>
</div>
</a>
</div>
<div class="card">
<a href="portfolio/book-cover-2.html">
<img src="assets/nsotb_thumb.png" alt="No Stopping or Turning Back Book Cover" class="w-full h-64 object-cover rounded-t-lg">
<div class="p-4">
<h3 class="text-xl font-bold">No Stopping or Turning Back - Redesign</h3>
<p class="text-gray-700">Redesigning the book cover of the famous Sinhala Novel "No Stopping or Turning Back" by Upul Shantha Sannasgala.</p>
</div>
</a>
</div>
<!-- Add more portfolio items as needed -->
</div>
</section>
<section id="contact" class="my-12">
<h2 class="text-3xl font-semibold mb-4">Contact Me</h2>
<div class="bg-white shadow-md rounded-lg p-6">
<p class="text-lg mb-4"><i class="fas fa-envelope text-blue-600"></i> <a href="mailto:dewyanthilakasiri@gmail.com" class="text-blue-600 hover:underline">dewyanthilakasiri@gmail.com</a></p>
<p class="text-lg mb-4"><i class="fas fa-phone text-blue-600"></i> <a href="tel:+94702215582" class="text-blue-600 hover:underline">+94 70 221 5582</a></p>
<p class="text-lg mb-4"><i class="fab fa-instagram text-blue-600"></i> <a href="https://instagram.com/d3wy4n" class="text-blue-600 hover:underline">@d3wy4n</a></p>
</div>
</section>
</main>
<footer class="bg-white shadow mt-12">
<div class="container mx-auto p-6 text-center">
<p>© 2024 Book Cover Designs by Dewyan. All rights reserved.</p>
</div>
</footer>
</body>
</html>