-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.html
38 lines (33 loc) · 1.06 KB
/
home.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
<!DOCTYPE html>
<html lang="en">
<head>
<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>Página pessoal do Ricardo</title>
<link rel="stylesheet" href="home.css">
<link rel="stylesheet" href="ope.css">
</head>
<body>
<main>
<section class='inicio'>
<h1>Página pessoal do Ricardo</h1>
<div class="avatar">
<img src="rick_wut.jpg" alt="Rick">
</div>
</section>
</main>
</body>
<script>
// fetch("http://ws.audioscrobbler.com/2.0/?method=user.gettopartists&user=ricardofrr&api_key=f58c1b962d2c89e7665911c31ef915d8&format=json&limit=15")
// .then(function(response){
// return response.json().then(function(dados){
// console.log(dados)
// }).catch(function(err){
// console.log(err);
// })
// }).catch(function(err){
// console.log(err)
// })
</script>
</html>