-
Notifications
You must be signed in to change notification settings - Fork 0
/
contact.html
81 lines (77 loc) · 2.67 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!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>Jonny Bravo Personal Website</title>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-wEmeIV1mKuiNpC+IOBjI7aAzPcEZeedi5yW5f2yOq55WWLwNGmvvx4Um1vskeMj0"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/owl.carousel.min.css" />
<link rel="stylesheet" href="css/owl.theme.default.min.css" />
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.3/css/all.min.css"
/>
</head>
<body>
<header>
<div class="header">
<div class="inner-header">
<div class="logo-container">
<a href="index.html">
<h1>Jonny <span>BRAVO</span></h1>
</a>
</div>
<button class="hamburger" id="hamburger">
<i class="fas fa-bars"> </i>
</button>
<ul class="navigation" id="navigation">
<a class="a-js" href="index.html">
<li>Home</li>
</a>
<a class="a-js" href="about.html">
<li>About</li>
</a>
<a class="a-js" href="portfolio.html">
<li>Portfolio</li>
</a>
<a class="a-js" href="contact.html">
<li>Contact</li>
</a>
</ul>
</div>
</div>
</header>
<div class="mail">
<p>To get in touch,email <b>jonnybravo@email.com </b></p>
</div>
<div class="contact">
<div class="btn-group" role="group" aria-label="Basic outlined example">
<button type="button" class="btn btn-outline-primary btn-face">
<i class="fab fa-facebook"></i>
</button>
<button type="button" class="btn btn-outline-primary btn-ins">
<i class="fab fa-instagram"></i>
</button>
<button type="button" class="btn btn-outline-primary btn-youtube">
<i class="fab fa-youtube"></i>
</button>
<button type="button" class="btn btn-outline-primary btn-twit">
<i class="fab fa-twitter"></i>
</button>
</div>
</div>
<div class="footer">
<p>all work © Jonny BRAVO 2021 • all rights reserved</p>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="js/script.js"></script>
<script src="js/owl.carousel.min.js"></script>
</body>
</html>