-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (47 loc) · 1.75 KB
/
index.html
File metadata and controls
47 lines (47 loc) · 1.75 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Meu Projeto</title>
<style>
body {
font-family: Arial, sans-serif;
background-image: url('https://github.com/AdrianoLink-DataScience/Hugging-Face/blob/main/01.jpeg');
background-size: cover; /* Ajusta a imagem para cobrir toda a tela */
background-repeat: no-repeat; /* Evita repetição da imagem */
background-position: center; /* Centraliza a imagem */
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
.container {
max-width: 800px;
text-align: center;
background: rgba(255, 255, 255, 0.9); /* Fundo branco semitransparente */
padding: 20px;
border-radius: 10px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
a {
text-decoration: none;
color: #3498db;
font-weight: bold;
}
a:hover {
color: #2c8ac9;
text-decoration: underline;
}
</style>
</head>
<body>
<div class="container">
<h1>Bem-vindo ao Meu Projeto!</h1>
<p>Este é um projeto pessoal que demonstra minhas habilidades em Python, Banco de Dados e na <br>Criação de um assistente SQL para consultas - querys - com Llama Index para um E-commerce.</p>
<p><a href="https://adrianol-assistente-ia-para-banco-de-dados-ecomm-08fa229.hf.space" target="_blank">Ver no meu Hugging Face</a></p>
</div>
</body>
</html>