-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
42 lines (39 loc) · 1.89 KB
/
about.html
File metadata and controls
42 lines (39 loc) · 1.89 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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>About Us</title>
<link rel="apple-touch-icon" sizes="180x180" href="favicon_io/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="favicon_io/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="favicon_io/favicon-16x16.png" />
<link rel="manifest" href="favicon_io/site.webmanifest" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Josefin+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,700&display=swap"
rel="stylesheet" />
<link rel="stylesheet" href="about.css" />
</head>
<body>
<section class="about">
<div class="content">
<img src="Media/MYMESSAGEZ (1).png" alt="logo" />
<div class="text">
<h1>About Us</h1>
<h5>Writing & Designing</h5>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Tempore
iste voluptas unde quam magnam. Et, molestiae nemo nesciunt laborum,
exercitationem consequuntur neque deserunt natus a ipsam voluptate
ipsa! Sed voluptatibus voluptatum explicabo rerum delectus!
Consequuntur quis et tempore, quam asperiores similique nisi nemo,
quod temporibus, sunt laudantium iste quo. Magnam.
</p>
<a href="contact.html" target="_blank" rel="noopener noreferrer">
<button type="button">Contact Us</button></a>
</div>
</div>
</section>
</body>
</html>