forked from myfreecomm/desafio-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
65 lines (55 loc) · 2.54 KB
/
header.php
File metadata and controls
65 lines (55 loc) · 2.54 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
<html lang="pt-br">
<head>
<meta charset="utf-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/animate.css">
<script type="text/javascript" src="js/jquery-3.3.1.js"></script>
<script type="text/javascript" src="js/popper.js"></script>
<script type="text/javascript" src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/js.js"></script>
<title>Web Design Ninja</title>
</head>
<body>
<div class="header">
<nav id="navegacao" class="navbar navbar-expand-lg ">
<a href="http://localhost/desafio-design-02/home.php"> <img src="img/wbnj2.svg"></a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse " id="navbarNav">
<ul class="navbar-nav ml-auto">
<li class="nav-item active">
<a class="nav-link" href="#">Video <span class="sr-only">(current)</span></a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Forum</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">purchase today</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">demo</a>
</li>
<li class="nav-item">
<a class="nav-link" href="http://localhost/desafio-design-02/melhorias.php">Melhorias</a>
</li>
</ul>
</div>
</nav>
<div class="container">
<div class="row">
<div class="col-1"></div>
<div class="img-header col-10">
<img src="img/main.jpg" class="img-fluid rounded mx-auto d-block">
</div>
<div class="col-1"></div>
</div>
<div class="titulo-header text-center">
<h1><span>Spotlight</span>,a Wordpress theme for a creative,agence & small businesses</h1>
<p>creativio is the perfect theme for the creative individual,agencies,freelancers</p>
<button type="button" class="btn btn-primary text-center">View demo</button>
</div>
</div>
</div>