├── .vscode └── settings.json ├── img └── logo1.png ├── README.md ├── index.html └── css └── arq.css /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "liveServer.settings.port": 5501 3 | } -------------------------------------------------------------------------------- /img/logo1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beatrizveloso/queen-s/HEAD/img/logo1.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![image](https://github.com/beatrizveloso/queen-s/assets/156534028/beec59c1-fb8e-420e-ad46-bece78c3a2d8) 2 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | Biografia Queen 7 | 8 | 9 | 10 | 11 |
12 |
13 |

Queen

14 |
15 | 16 |
17 |

18 | Queen é uma banda de rock liderada atualmente por Brian May (guitarra), Roger Taylor (bateria) e John Deacon (baixo). Foi uma das mais populares bandas inglesas dos anos 1970 e 1980, sendo precursora do rock, tal como hoje o conhecemos, com magníficas produções dos seus concertos e videoclipes das suas canções. 19 |

20 |
21 | 22 |
23 | 24 |
25 |

"Love of my life, don’t leave me, you’ve stolen my love and now desert me"

26 |
27 | 28 |
29 | 30 |
31 | 32 |
33 | 34 | -------------------------------------------------------------------------------- /css/arq.css: -------------------------------------------------------------------------------- 1 | *{ 2 | padding: 0px; 3 | margin: 0px; 4 | } 5 | 6 | 7 | .retangle { 8 | width: 550px; 9 | height: 390px; 10 | border: 1px solid white; 11 | margin: auto; 12 | margin-top: 3%; 13 | border-radius: 40px; 14 | background-color: #590f0c; 15 | } 16 | 17 | .title{ 18 | width: 550px; 19 | height: 50px; 20 | margin-top: 4%; 21 | } 22 | 23 | h1{ 24 | width: 350px; 25 | color: white; 26 | text-align: center; 27 | margin: auto; 28 | border: 2px solid white; 29 | border-radius: 40px; 30 | } 31 | .text1{ 32 | width: 350px; 33 | color: white; 34 | margin: auto; 35 | margin-top: 4%; 36 | text-align: justify; 37 | font-family: 'Times New Roman', Times, serif; 38 | } 39 | 40 | hr { 41 | width: 350px; 42 | margin: auto; 43 | margin-top: 3%; 44 | } 45 | 46 | .text2{ 47 | width: 350px; 48 | text-align: center; 49 | margin: auto; 50 | margin-top: 2%; 51 | font-family: 'Times New Roman', Times, serif; 52 | color: white; 53 | } 54 | 55 | img{ 56 | width: 20%; 57 | height: 20%; 58 | display: flex ; 59 | flex-direction: row; 60 | justify-content: center; 61 | align-items: center; 62 | margin: auto; 63 | } --------------------------------------------------------------------------------