-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
32 lines (29 loc) · 699 Bytes
/
about.html
File metadata and controls
32 lines (29 loc) · 699 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
30
31
32
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>About page</title>
<link href="aboutstyle.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="header-container">
<h1>ABOUT US</h1>
<p>Erin</p>
</div>
<div class="content-container">
<div class="section">
<h2>OUR MOTIVATION</h2>
<p> Nicole </p>
</div>
<div class="section">
<h2>OUR MISSION</h2>
<p>Xandria</p>
</div>
<div class="section">
<h2>OUR VALUES</h2>
<p>Karam</p>
</div>
</div>
</body>
</html>