-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
71 lines (70 loc) · 2.42 KB
/
contact.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>Contact</title>
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600&display=swap"
rel="stylesheet"
/>
<link href="public/style/output.css" rel="stylesheet" />
</head>
<body class="text-white text-lg bg-ash-900 min-h-screen">
<header class="max-w-screen-xl p-6 sm:p-10 mx-auto">
<nav class="w-full flex justify-between">
<a href="index.html">
<p class="text-xl font-bold">Muyas–</p>
</a>
<ul class="flex md:gap-6 text-ash-msg-300">
<li>
<a
href="index.html#selectedwork"
class="hidden lg:block hover:text-white"
>Selected Work</a
>
</li>
<li>
<a href="cv.html" class="hidden lg:block hover:text-white">CV</a>
</li>
<li>
<a href="contact.html" class="hover:text-white">Contact</a>
</li>
</ul>
</nav>
</header>
<div class="flex flex-col justify-between"></div>
<main class="max-w-screen-xl px-6 sm:px-10 mt-8 sm:mt-10 lg:mt-24 mx-auto">
<h1 class="text-2xl lg:text-3xl font-bold select-none pb-8 text-center">
Let's chat and build a top-notch design together!
</h1>
<div
class="relative max-w-screen-sm mx-auto p-6 sm:p-8 bg-ash-f-08 rounded-lg"
>
<p
class="font-medium sm:text-xl lg:text-2xl pb-2 text-center text-ash-300"
>
muyas021@gmail.com
</p>
<div
class="flex flex-row gap-1 lg:text-xl select-none pb-1 mx-auto w-fit"
>
<a
href="https://www.linkedin.com/in/meetmuyas/"
class="text-white font-medium hover:underline hover:decoration-2 select-none"
>LinkedIn</a
>
<span class="text-ash-300 select-none text-xl">∙</span>
<a
href="https://twitter.com/meetMuyas"
class="text-white font-medium hover:underline hover:decoration-2 select-none"
>X/Twitter</a
>
</div>
</div>
</main>
</body>
<script src="script/nav.js"></script>
</html>