-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (71 loc) · 2.53 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 rel="stylesheet" href="index.css" /> -->
<script
src="https://kit.fontawesome.com/0505a68c8d.js"
crossorigin="anonymous"
></script>
<link href="output.css" rel="stylesheet" />
</head>
<body class="bg-slate-700">
<section class="page-wrap w-10/12 mx-auto">
<section
class="hero h-[100vh] flex items-center justify-center text-center mb-10 text-white"
>
<div class="name-text">
<p class="hero-text text-2xl sm:text-4xl">Hi, I'm</p>
<h1 class="hero-text text-6xl sm:text-8xl mb-4">Mohammed</h1>
<h1 class="hero-text text-2xl sm:text-4xl">
Front End Web Developer
</h1>
<button
class="hero-btn text-xl sm:text-2xl bg-transparent font-semibold py-2 px-4 mt-11 border border-white rounded-lg"
>
<a href="#project-heading-text-wrap">View Projects</a>
</button>
</div>
</section>
<div
id="project-heading-text-wrap"
class="flex flex-col justify-center items-center"
>
<h1 class="text-white projects-text text-4xl text-center mt-10">
PROJECTS
</h1>
<div
class="flex items-center justify-center w-[5%] border-solid border-2 border-white mt-5 mb-16"
></div>
</div>
<section class="cards-section-wrap"></section>
<section
class="project-heading-text-wrap flex flex-col justify-center items-center"
>
<h1 class="projects-text text-4xl text-center text-white">CONTACT</h1>
<div
class="flex items-center justify-center w-[5%] border-solid border-2 border-white mt-5"
></div>
<div class="text-white contact-links-wrap my-24">
<ul class="text-center sm:flex gap-10">
<li class="mb-10">
<a href="mailto:[email protected]" target="_blank">Email</a>
</li>
<!-- <li>
<a href="https://github.com/mpmua" target="_blank">LinkedIn</a>
</li> -->
<li>
<a href="https://github.com/mpmua" target="_blank">Github</a>
</li>
</ul>
</div>
</section>
<footer class="text-xs my-5 text-white text-center">
Made by Mohammed Patel © 2023
</footer>
</section>
<script src="projects.js"></script>
<script src="index.js"></script>
</body>
</html>