-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
58 lines (48 loc) · 2.37 KB
/
contact.html
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
55
56
57
58
<!DOCTYPE html>
<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>Contact - Paula-Petra</title>
<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=Rajdhani:wght@300;400&display=swap" rel="stylesheet">
<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=Baloo+2:wght@400;500&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<header id="pagetop">
<nav>
<div>
<h1><a href="index.html">Paula-Petra</a></h1>
</div>
<div class="menu">
<ul>
<li id="home-btn"><a href="index.html">Home</a></li>
<li id="about-btn"><a href="index.html#about">About</a></li>
<li id="proj-btn"><a href="index.html#projects">Projects</a></li>
<li id="services-btn"><a href="index.html#services">Services</a></li>
<li id="contact-btn "><a href="contact.html ">Contact</a></li>
</ul>
</div>
<img class="open-menu" width="30" height="30" src="https://img.icons8.com/ios-glyphs/30/menu--v1.png" alt="menu--v1"/>
</nav>
</header>
<div class="container">
<section id="contactMe">
<h2>Get In Touch</h2>
<p>Want to work together or have enquiries?</p>
<a href="mailto:[email protected]" class="button" id="hello">Say Hello!</a>
<div>
<a class="socials" target="_blank" href="https://twitter.com/paulapetra_"><img src="imgs/icons8-twitter-64.png" alt=""></a>
<a class="socials" target="_blank" href="https://www.linkedin.com/in/paula-petra-ikechukwu-11561a206/"><img src="imgs/icons8-linkedin-circled-64.png" alt=""></a>
</div>
</section>
</div>
<footer>Designed and Built by <b>Paula-Petra</b></footer>
</body>
<script src="app.js"></script>
</html>