-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProjetos.html
More file actions
63 lines (55 loc) · 1.27 KB
/
Copy pathProjetos.html
File metadata and controls
63 lines (55 loc) · 1.27 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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<style>
#background1 {
height: 100vmax;
width: 100vmax;
background-color: #2a2ac0;
background-image: linear-gradient(to right, #0e0b41, #00d4ff);
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: #333;
background-image: linear-gradient(to left, rgb(77, 67, 67), rgb(133, 122, 122));
}
li {
float: left;
border-left: black;
}
li {
border-right: 5px;
}
li a {
display: block;
color: white;
text-align: center;
padding: 16px 16px;
text-decoration: none;
}
li a:hover:not(.active) {
background-color: #111;
}
.active {
background-color: rgb(104, 104, 212);
}
</style>
</head>
<body>
<div id="background1">
<ul>
<li><a class="active" href="file:///C:/Users/labinfo/Desktop/RafaelUeda/Portf%C3%B3lio.html">Início</a></li>
<li><a href="file:///C:/Users/labinfo/Desktop/RafaelUeda/Projetos.html">Projetos</a></li>
<li><a href="file:///C:/Users/labinfo/Desktop/RafaelUeda/Contatos.html">Contatos</a></li>
<li style="float:right"><a href="Sobre mim">Sobre mim</a></li>
</ul>
<h1 style="text-align: center; font-family: cursive; font-size: 40px;">
Não tenho muita experiência com projetos<br>
porém tenho facilidade com certas linguagens:
</h1>
</div>
</body>
</html>