-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsampleprojects.html
More file actions
78 lines (74 loc) · 3.41 KB
/
sampleprojects.html
File metadata and controls
78 lines (74 loc) · 3.41 KB
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
75
76
77
78
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>JUAN DAVID GARCIA Portfolio</title>
<link rel="stylesheet" href="./assets/css/site.css">
<link rel="stylesheet" href="./assets/css/main.css">
</head>
<body>
<header>
<div class="bg-blue-400 font-extrabold text-3xl container flex flex-col items-center justify-center p-6 mx-auto md:flex-row gap-2">
<h1>Juan Garcia Portfolio</h1>
<img src="https://placehold.co/64?text=logo" alt="Logo">
</div>
<nav>
<ul class="flex flex-col md:flex-row text-amber-800 bg-amber-400 font-bold text-3xl pl-6 ml-6 gap-6 md:gap-10 border-l border-gray-200 md:mr-auto border border-dashed justify-center">
<li><a href="./index.html">Home | </a></li>
<li><a href="./about.html">About | </a></li>
<li><a href="./resume.html">Resumé | </a></li>
<li><a href="./contact.html">Contact | </a></li>
<li><a href="./projects.html">Projects | </a></li>
<li><a href="./sampleprojects.html">Sample Project | </a></li>
</ul>
</nav>
</header>
<main>
<section class="aside-section-one aside-section">
<header>
<h3>Ninja API App</h3>
</header>
<div class="api-section">
<h4>Select API</h4>
<label>
Quotes <input type="checkbox" id="quotes-box">
</label>
<label>
Hobbies <input type="checkbox" id="hobbies-box">
</label>
<label>
<input type="text" id="user-input" placeholder="Enter category">
</label>
<button id="get-response">Get response</button>
<div id="response"></div>
<div id="error"></div>
</div>
<footer>
Juan Garcia
</footer>
</section>
</main>
<footer class="text-black bg-yellow-200 text-9xl body-font w-full container flex flex-col items-start justify-between p-6 mx-auto md:flex-row gap-2">
<a class="flex items-center mb-4 title-font md:mb-0 gap-2 hover:text-white transition duration-500 ease-in-out">
<img src="https://placehold.co/64?text=logo" alt="Logo" class="h-6">
<h1 class="text-lg">Site Name</h1>
</a>
<div class="flex flex-wrap text-lg pl-6 ml-6 text-base border-l border-gray-400 grow">
<p class="m-auto">
© Copyright 2024 JUAN DAVID GARCIA, all rights reserved.
</p>
</div>
<div class="flex flex-wrap text-lg pl-6 ml-6 text-base border-l border-gray-400 md:mr-auto gap-2">
<a href="./about.html" class="border-b border-gray-400 hover:border-gray-200 hover:text-white transition duration-500 ease-in-out">About</a>
<a href="./contact.html" class="border-b border-gray-400 hover:border-gray-200 hover:text-white transition duration-500 ease-in-out">Contact</a>
<a href="./resume.html" class="border-b border-gray-400 hover:border-gray-200 hover:text-white transition duration-500 ease-in-out">Resumé</a>
<a href="./projects.html" class="border-b border-gray-400 hover:border-gray-200 hover:text-white transition duration-500 ease-in-out">Projects</a>
<a href="./sampleprojects.html" class="border-b border-gray-400 hover:border-gray-200 hover:text-white transition duration-500 ease-in-out">Sample Project</a>
</div>
</footer>
<script src="./assets/js/main.js"></script>
</body>
</html>