-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
32 lines (31 loc) · 1.86 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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css" integrity="sha512-Fo3rlrZj/k7ujTnHg4CGR2D7kSs0v4LLanw2qksYuRlEzO+tcaEPQogQ0KaoGN26/zrn20ImR1DfuLWnOo7aBA==" crossorigin="anonymous" referrerpolicy="no-referrer" />-->
<link rel="stylesheet" href="./css/styles.css">
<title>Cards Expansíveis</title>
</head>
<body>
<div class="container">
<div class="panel active" style="background-image: url('https://images.pexels.com/photos/2150/sky-space-dark-galaxy.jpg?cs=srgb&dl=pexels-pixabay-2150.jpg&fm=jpg');">
<h3>Explore o espaço</h3>
</div>
<div class="panel" style="background-image: url('https://s2.glbimg.com/aCpmK5gvQaDRflZAL3hAHDIE2IE=/1200x/smart/filters:cover():strip_icc()/i.s3.glbimg.com/v1/AUTH_59edd422c0c84a879bd37670ae4f538a/internal_photos/bs/2019/S/X/nLdll5RQ6WBbUhURQvRA/m31.jpg');">
<h3>Galáxia de Andromeda</h3>
</div>
<div class="panel" style="background-image: url('http://s2.glbimg.com/jpNxAnLfDXTDWxoJMZVSdhEdCQA=/e.glbimg.com/og/ed/f/original/2016/02/19/black_hole.jpg');">
<h3>Buraco negro</h3>
</div>
<div class="panel" style="background-image: url('https://ogimg.infoglobo.com.br/in/17863760-346-0af/FT1086A/gigante-vermelha-2.jpg');">
<h3>Estrela gigante vermelha</h3>
</div>
<div class="panel" style="background-image: url('http://s2.glbimg.com/GFPS5Z4tyGJmSbzkmoa5I6u2FUk=/e.glbimg.com/og/ed/f/original/2016/04/04/white_dwarf_by_i3a12c1.jpg');">
<h3>Estrela anã branca</h3>
</div>
</div>
<script src="./js/script.js"></script>
</body>
</html>