-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathResponsive.html
More file actions
29 lines (27 loc) · 850 Bytes
/
Copy pathResponsive.html
File metadata and controls
29 lines (27 loc) · 850 Bytes
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
<!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">
<title>Document</title>
<link rel="stylesheet" href="Responsive.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.11.2/css/all.css">
</head>
<body>
<div class="contact-info">
<div class="card">
<i class="card-icon far fa-envelope"></i>
<p>email@domain.com</p>
</div>
<div class="card">
<i class="card-icon fas fa-phone"></i>
<p>+000000000000</p>
</div>
<div class="card">
<i class="card-icon fas fa-map-marker-alt"></i>
<p>New York, US</p>
</div>
</div>
</body>
</html>