-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (112 loc) · 5.09 KB
/
index.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
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
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<!-- WebStart 1.6.3 | https://github.com/gmasson/webstart | License MIT -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta charset="utf-8">
<meta name="Resource-type" content="document">
<!-- <link rel="canonical" href=""> -->
<meta name="Robots" content="all">
<meta name="Rating" content="general">
<meta name="author" content="">
<meta name="keywords" content="">
<meta name="description" content="">
<title>Webstart</title>
<!-- Favicon -->
<link href="assets/img/favicon.png" rel="shortcut icon" type="image/x-icon">
<!-- Icones -->
<link href="assets/img/icon.png" rel="icon" type="image/png">
<!-- Cor do tema -->
<meta name="theme-color" content="#333333">
<!-- Manifest -->
<!-- <link href="manifest.json" rel="manifest"> -->
<!-- Para Redes Socias -->
<meta property="og:locale" content="pt_BR">
<meta property="og:type" content="website">
<meta property="og:image" content="assets/img/social.png">
<!-- Dados estruturados -->
<!--
https://developers.google.com/search/docs/appearance/structured-data/intro-structured-data?hl=pt-br
https://developers.google.com/search/docs/appearance/structured-data/search-gallery?hl=pt-br
-->
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "WebSite",
"name": "Webstart",
"url": "https://seusite.com"
}
</script>
<!-- CSS / Bootstrap 5.3.3 -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-QWTKZyjpPEjISv5WaRU9OFeRpok6YctnYmDr5pNlyT2bRjXh0JMhjY6hW+ALEwIH" crossorigin="anonymous">
<!-- <link rel="stylesheet" href="assets/css/bootstrap.min.css" type="text/css"> -->
<!-- CSS / Styles -->
<link rel="stylesheet" href="assets/css/styles.css" type="text/css">
</head>
<body>
<!-- Header (com navbar) -->
<header>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container">
<a class="navbar-brand" href="#">
<img src="assets/img/logo.png" alt="Logo" loading="lazy">
</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Fechar menu">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarSupportedContent">
<ul class="navbar-nav mb-md-auto ms-auto mr-auto">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#">Link</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-bs-toggle="dropdown" aria-expanded="false">
Dropdown
</a>
<ul class="dropdown-menu" aria-labelledby="navbarDropdown">
<li><a class="dropdown-item" href="#">Action</a></li>
<li><a class="dropdown-item" href="#">Another action</a></li>
<li><hr class="dropdown-divider"></li>
<li><a class="dropdown-item" href="#">Something else here</a></li>
</ul>
</li>
<li class="nav-item">
<a class="nav-link disabled" href="#" aria-disabled="true">Disabled</a>
</li>
</ul>
</div>
</div>
</nav>
</header>
<!-- Section -->
<section>
<div class="container">
<article>
<h1>Start from the beginning</h1>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, but also the leap into electronic typesetting, remaining essentially unchanged. It was popularised in the 1960s with the release of Letraset sheets containing Lorem Ipsum passages, and more recently with desktop publishing software like Aldus PageMaker including versions of Lorem Ipsum.</p>
</article>
</div>
</section>
<!-- Footer -->
<footer>
<div class="container">
<p><strong>WebStart</strong> - Project with utilities to start a new website</p>
<div class="links">
<a href="https://github.com/gmasson/webstart" target="_blank" rel="noopener noreferrer">Go to the website</a>
</div>
</div>
</footer>
<!-- JS / Bootstrap Bundle 5.3.3 -->
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz" crossorigin="anonymous"></script>
<!-- <script src="assets/js/bootstrap.bundle.min.js" defer></script> -->
<!-- JS / Bootstrap 5.3.3 -->
<!-- <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-0pUGZvbkm6XF6gxjEnlmuGrJXVbNuzT9qBBavbLwCsOGabYfZo0T0to5eqruptLy" crossorigin="anonymous"></script> -->
<!-- <script src="assets/js/bootstrap.min.js" defer></script> -->
<!-- JS / Scripts -->
<script src="assets/js/scripts.js" defer></script>
</body>
</html>