-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
42 lines (42 loc) · 1.21 KB
/
about.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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- configurações da pagina -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Jane Doe - About</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- conteudo visivel para o usuario -->
<header>
<h1>Jane Doe</h1>
<nav>
<ul>
<!--atalho: nav>ul(li>a)*4-->
<li><a href="index.html">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="music.html">Music</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</nav>
</header>
<main id= "about">
<h1>About</h1>
<div>
<h2>"Seattle-based pop star makes her indie debut with a hauntingly beautiful album"</h2>
<p>- John Tirckle, Music Today Post</p>
</div>
<div>
<h2>"Jane Doe is one of the scene's breakout stars"</h2>
<p>- John Tirckle, Music Today Post</p>
</div>
<img src="img/jane2.jpg" alt="Foto da Jane">
</main>
<footer>
<p>Copyright - Jane Doe</p>
</footer>
</body>
</html>