forked from CodewizardsHQ-Alex/H33-06-starter-code
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
37 lines (30 loc) · 1.39 KB
/
about.html
File metadata and controls
37 lines (30 loc) · 1.39 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
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Climate change - Home</title>
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Bree+Serif&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@500&family=Lato&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class='navbar'>
<p class="logo">Logo</p>
<a href="index.html"><p class='nav-button'>Home</p></a>
<a href="about.html"><p class='nav-button selected' >About</p></a>
<a href="team.html"><p class='nav-button'>Team</p></a>
<a href="contact.html"><p class='nav-button'>Contact</p></a>
</div>
<div class='main'>
<img src="img/about.png" class="page-image">
<div class="title header">
About
</div>
<div class="subtitle">
<p>Creativity is in our DNA. Our game-changing innovations are redefining the possibilities of digital experiences. We connect content and data and introduce new technologies that democratize creativity, shape the next generation of storytelling, and inspire entirely new categories of business.</p>
</div>
</div>
</div>
</body>
</html>