Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added assets/fonts/futura-medium/Blacklisted.ttf
Binary file not shown.
Binary file added assets/fonts/futura-medium/FUTURAMEDIUM.TTF
Binary file not shown.
Binary file added assets/fonts/georgia-2/georgia.ttf
Binary file not shown.
Binary file added assets/fonts/georgia-2/georgiab.ttf
Binary file not shown.
Binary file added assets/fonts/georgia-2/georgiai.ttf
Binary file not shown.
Binary file added assets/fonts/georgia-2/georgiaz.ttf
Binary file not shown.
Binary file added assets/images/Facebook.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/Instagram.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/Logotip.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/YouTube.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/logo_blue.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/logo_white.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
641 changes: 639 additions & 2 deletions css/main.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion css/main.css.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

77 changes: 76 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,81 @@
<meta name="theme-color" content="#202F66">
</head>
<body>
<p>Job Application HTML Tests — ooptimo</p>

<header class="gradient-bg text-white flex flex-col items-center pt-8 pb-20 px-8 sm:px-4">
<div class="w-full max-w-6xl flex justify-center mb-10 sticky top-3">
<div class="bg-ooptimo-mint rounded-full py-2 px-6 flex items-center justify-start relative w-full">
<a href="#">
<img src="./assets/images/logo_blue.png" alt="ooptimo logo">
</a>
</div>
</div>

<div class="text-center max-w-6xl min-h-[80vh] flex flex-col justify-center items-center">
<h2 class="text-5xl md:text-7xl font-normal leading-tight mb-6 georgia">
Creiem en una <span class="text-ooptimo-mint font-bold">era digital</span>, on el consum tradicional i l'online es fusionen
</h2>
<p class="text-2xl">
Connectant les companyies amb els seus<br> clients com mai abans ho havien fet.
</p>

<a href="#"
class="inline-block mt-10 text-xl py-7 px-18 bg-ooptimo-mint text-ooptimo-dark-blue text-lg font-[700] rounded-lg shadow-lg hover:bg-white hover:text-ooptimo-mint transition duration-300">
Contactar
</a>
</div>

</header>

<footer class="bg-white text-ooptimo-dark-blue">
<div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8 py-12">
<div class="grid grid-cols-2 md:grid-cols-4 gap-8">

<div>
<h3 class="text-2xl mb-3 max-h-20 min-h-20"> <img src="./assets/images/Logotip.png" alt="ooptimo logo" class=""></h3>
<p class="text-sm font-[500]">© 2024 Ooptimo Consulting.</p>
<p class="text-sm">Tots els drets reservats.</p>
</div>

<div>
<h3 class="text-2xl mb-3 max-h-20 min-h-20">Contacte</h3>
<address class="text-sm">
Carrer Sant Elies nº 29-35<br>
08006 Barcelona<br>
Espanya
</address>
</div>

<div>
<h3 class="text-2xl mb-3 max-h-20 min-h-20">Legal</h3>
<ul class="space-y-1">
<li><a href="#" class="text-sm underline">Política de Privacidad</a></li>
<li><a href="#" class="text-sm underline">Política de Cookies</a></li>
<li><a href="#" class="text-sm underline">Aviso Legal</a></li>
</ul>
</div>

<div>
<h3 class="text-2xl mb-3 max-h-20 min-h-20">Segueix-nos</h3>
<div class="flex space-x-3">
<a href="#">
<img src="./assets/images/Facebook.png" alt="Facebook icon" class="w-[38px] h-[38px]" >
</a>
<a href="#">
<img src="./assets/images/Instagram.png" alt="Instagram icon" class="w-[38px] h-[38px]" >
</a>
<a href="#">
<img src="./assets/images/YouTube.png" alt="YouTube icon" class="w-[38px] h-[38px]" >
</a>
</div>
</div>

</div>
</div>

<div class="bg-ooptimo-dark-blue py-4 text-center">
<img src="./assets/images/logo_white.png" alt="ooptimo logo" class="mx-auto block">
</div>
</footer>
</body>
</html>
Loading