-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
47 lines (45 loc) · 2.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://cdn.tailwindcss.com"></script>
<title>Start</title>
</head>
<body class="bg-gradient-to-l from-violet-400 to-green-400 font-light">
<div id="Header" class="bg-white bg-opacity-90 shadow-2xl shadow-gray-800 py-8 px-5 w-full flex justify-between">
<div id="Left">
<h2 class="font-semibold text-lg">Projects</h2>
</div>
<div id="Middle">
<a class="font-normal px-5 hover:underline">Projects</a>
<!-- <a class="font-normal px-5 hover:underline">About me</a> -->
</div>
<div id="Right">
</div>
</div>
<div class="w-full flex justify-center mt-10">
<h2 class="font-bold">Welcome to my Projects</h2>
</div>
<div class="flex justify-center mt-5 w-full"> <!-- Entfernen Sie mx-5 -->
<div class="grid grid-cols-1 gap-4 content-center lg:grid-cols-2 ">
<div class="w-52 bg-white shadow-md rounded-2xl">
<img class="w-full rounded-t-xl " src="/images/Calculator.JPG" alt="Calculator">
<div class="mt-4 p-4">
<h2><a href="Calculator/index.html">Calculator</a></h2>
<hr>
<p class="text-gray-700">An easy Calculator created with Tailwind CSS</p>
</div>
</div>
<div class="w-52 bg-white shadow-md rounded-2xl">
<img class="rounded-t-xl w-full " src="/images/PasswordGenerator.JPG" height="1" alt="PasswordGenerator">
<div class="mt-4 p-4">
<h2><a href="PasswordGenerator/index.html">Password Generator</a></h2>
<hr>
<p class="text-gray-700">Generate safe Passwords with an Password Generator</p>
</div>
</div>
</div>
</div>
</body>
</html>