forked from PlatziMaster/challenge-CSS-06
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (52 loc) · 1.67 KB
/
index.html
File metadata and controls
54 lines (52 loc) · 1.67 KB
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
<!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" />
<link rel="stylesheet" href="src/styles.css" />
<title>Flexbox Dialog</title>
</head>
<body>
<div class="container">
<section class="card__1">
<div class="card__image">
<img
src="https://images.pexels.com/photos/189349/pexels-photo-189349.jpeg?auto=compress&cs=tinysrgb&dpr=1&w=500"
alt="card image"
/>
</div>
<div class="card__1-content">
<p>Dummy Text</p>
<p>Well Good</p>
<button>BUTTON</button>
</div>
</section>
<section class="card__2">
<img
src="https://images.unsplash.com/photo-1520810627419-35e362c5dc07?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=200&fit=max&ixid=eyJhcHBfaWQiOjE3Nzg0fQ"
alt="profile picture"
/>
<div class="card__2-content">
<h1>Cuba</h1>
<h4>Salsa, merengue y cumbia</h4>
</div>
</section>
<div class="dialog__modal-container">
<div class="dialog__modal">
<div class="dialog__modal-content">
<h1>Use location service?</h1>
<p>
Let us help apps determine location. This means sending anonymous
data to us, even when no apps are running.
</p>
</div>
<div class="dialog__modal-buttons">
<button>DISAGREE</button>
<button>AGREE</button>
</div>
</div>
</div>
</div>
</body>
</html>