forked from cabrall10/treino_web2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
site_teste.html
58 lines (46 loc) · 1.48 KB
/
site_teste.html
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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {margin:0;}
.navbar {
overflow: hidden;
background-color: #333;
position: fixed;
top: 0;
width: 100%;
}
.navbar a {
float: left;
display: block;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
.navbar a:hover {
background: #ddd;
color: black;
}
.main {
padding: 16px;
margin-top: 30px;
height: 1500px; /* Used in this example to enable scrolling */
}
</style>
</head>
<title> </title>
<body>
<div class="navbar">
<a href="https://www.ucam-campos.br/">UCAM</a>
<a href="https://pt.wikipedia.org/wiki/Desenvolvimento_web">WEB1</a>
<a href="https://www.intelectua.com.br/blog/o-que-e-desenvolvimento-web">WEB2</a>
</div>
<div class="main">
<h4>"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."</h4>
<p>Jefferson Cabral Luiz</p>
<p>UCAM 2018</p>
</div>
</body>
</html>