-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPojeto-html.html
More file actions
117 lines (112 loc) · 2.46 KB
/
Copy pathPojeto-html.html
File metadata and controls
117 lines (112 loc) · 2.46 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html>
<head>
<title> FTT PROJETO
</title>
<style>
body: {padding: 0;
border: 0;
margin: 0;
font-family: Verdana,Arial}
header{
width: 100%;
background-color: greenyellow;
display:block;
/* text-align: center;*/
}
footer {
background-color: orangered;
color: white;
text-align: center;
height: 60px;
}
ul {
list-style-type: none;
margin: 0;
padding: 0;
}
li {
display: inline-block;
}
li a {
display: block;
width: 60px;
}
.logo {
display: inline-block;
font-size: 60px;
width:50px;
height: 60px;
text-align: :center;
color:yellow;
background-image: linear-gradient(#8a2387,#e94057,#f27121);
border-radius: 10px 10px 10px 10px;
line-height: 60px;
}
.logo:hover{
background-color: white;
color: yellow;
background-image: linear-gradient(black,yellow,black)
}
.company-name{
display:inline-block;
font-size: 50px;
color: white;
}
.menu{
padding: 10px;
text-align: center;
}
.menu_btn{
background-color: yellow;
}
.menu_btn_ladinho{
background-color: yellow;
width: 120px;
border-color: aqua;
border-style: groove;
padding: 20px;
margin: 5px;
}
.ladinho{
padding: 10px;
width: 0;
}
</style>
</head>
<body>
<header>
<div class="logo">ℵ</div>
<div class="company-name">Eloah Noguchi</div>
</header>
<nav class="menu">
<button class="menu_btn">Home</button>
<button class="menu_btn">Categoria</button>
</nav>
<aside>
<nav class="ladinho">
<button class="menu_btn_ladinho">Preco</button>
<button class="menu_btn_ladinho">Categoria</button>
<button class="menu_btn_ladinho">Home</button>
<button class="menu_btn_ladinho">Categoria</button>
</nav>
</aside>
<main>
<article>
<h3>
</h3>
<img = "caminho">
<p>
asdasdadadasdasdasdasdasdasd
</p>
</article>
<article>
</article>
<section>
</section>
</main>
<footer> <!--rodapé-->
<p>Copyright ©Eloah Noguchi - 2019</p>
</footer>
</body>
</html>