-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathp1.html
103 lines (78 loc) · 2.5 KB
/
p1.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
<!DOCTYPE html>
<html lang="pt-br">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>O Jogo</title>
<style>
#img01 {
padding-block: 10px;
border-radius: 35px;
position: absolute;
top: 22%;
left: 10%;
}
#fieldset02 {
border: solid 5px gray;
border-radius: 35px;
margin: 15px;
position: relative;
right: 2%;
width: 350px;
height: 75px;
}
#img02 {
width: 50px;
}
#img03 {
width: 60px;
position: absolute;
left: 80%;
margin: 2px;
}
#p00 {
text-align: center;
font-family: sans-serif ;
}
#p01 {
text-align: center;
}
#button01 {
position:absolute;
top: 80%;
}
#fieldset01 {
border: solid 5px gray;
border-radius: 35px;
margin: 15px;
position: absolute;
left: 0%;
top: 18%;
width: 350px;
height: 530px;
}
</style>
</head>
<body>
<fieldset id="fieldset01">
<div>
<p id="p00" style="font-size: 20px;">No dia 10 de Outubro de 2023, foi gravado em uma folha de papel de caderno a obra abaixo. <br> <strong>Quem é o artista?</strong> </p>
<picture>
<img id="img01" src="img/for1.jpg" width="300px" alt=".jpg">
</picture>
<div id="button01">
<label style="font-size: 20px;"><strong>A) </strong></label><a href="index.html"><button style="font-size: 20px;">Leonardo da Vinci</button></a><br><br>
<label style="font-size: 20px;"><strong>B) </strong></label><a href="p2.html"><button style="font-size: 20px;">Ricardo Bizarro Souza</button></a>
</div>
</div>
</fieldset>
<fieldset id="fieldset02">
<div>
<picture>
<img id="img02" src="img/prof1.PNG" alt=".png">
<img id="img03" src="img/eu1.PNG" alt=".png">
</picture>
</div>
</fieldset>
</body>
</html>