-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsobre.html
126 lines (112 loc) · 2.84 KB
/
sobre.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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html>
<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">
<link rel="stylesheet" href="./style.css">
<link href="https://fonts.googleapis.com/css?family=Dancing+Script&display=swap" rel="stylesheet">
<title>Sobre</title>
</head>
<style>
h1 {
text-align: center;
margin-top: 30px
}
.bg {
background: url('assets/image1.jpeg') no-repeat center center;
display: table;
width: 100%;
height: 100vh;
padding: 100px 0;
color: white;
background-position: 30% 45%;
background-size: cover;
}
.about{
width: 500px;
height: 500px;
margin-left: 30%;
margin-top: 5%;
}
.about:hover {
border: 2px solid;
border-color: #f06cfa;
}
.about h1 {
margin-top: 45%;
color: #000 !important;
}
.about p{
color: #000 !important;
font-size: 25px;
}
#myautoload {
position: absolute;
top: 10px;
right: 40%;
}
.content-page {
text-align: center;
}
.images{
display: flex;
justify-content: space-around;
}
.image {
background-color: rgb(168, 168, 168);
width: 200px;
height: 350px;
}
.btn {
text-align: center;
color: #fff;
text-decoration: none;
position: absolute;
top: 10px;
left: 15px;
width: 100px;
height: 40px;
background: #f06cfa;
border-radius: 16px;
display: flex;
justify-content: center;
align-items: center;
}
.btn:hover {
background: #faadff
}
</style>
<body>
<div class="bg">
<a class="btn" href="presente.html">PRESENTES</a>
<audio autoplay="autoplay" controls="controls" id="myautoload">
<source src="assets/violin_cover.mp3">
</audio>
<div class="about">
<h1 id="tittle">João & Maria</h1>
</div>
</div>
<div class="content-page">
<h1>UM POUCO MAIS SOBRE NÓS!</h1>
<div class="images">
<div class="image"></div>
<div class="image"></div>
<div class="image"></div>
<div class="image"></div>
<div class="image"></div>
<div class="image"></div>
</div>
</div>
<div class="content-page2">
<h1>SOBRE O CASAMENTO!</h1>
<p style="font-size: 26px; text-align: center; color: #444444">
Capela Central<br>
R. Padre João J Pereira, 2-32 - MG
<br>
Data: 12/01/2020<br>
Horario: 08:30
</p>
</div>
</body>
</html>