-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
63 lines (54 loc) · 1.95 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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap CSS -->
<link href="css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="css/master.css">
<link rel="stylesheet" href="css/contact.css">
<title>Bronson Carder's Bottomless Thoughts</title>
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Raleway:wght@500&family=Shadows+Into+Light&display=swap" rel="stylesheet">
</head>
<body>
<header>
<h1>Bronson Carder's Bottomless Thoughts</h1>
<ul id="myHeader">
<li><a href="index.html">Home</a></li>
<li><a href="coding.html">Coding</a> </li>
<li><a href="music.html">Music</a></li>
<li><a href="reviews.html">Reviews</a> </li>
<li><a href="contact.html">Contact Me</a></li>
</ul>
</header>
<article>
<h1>Contacts</h1>
<div class="grid">
<div>
<h3>Social Media:</h3>
<a href="https://www.facebook.com/bronson.carder">Facebook</a>
</div>
<div>
<h3>Email:</h3>
<a href="mailto:[email protected]">[email protected]</a><br>
</div>
<div>
<h3>My old Blog:</h3>
<a href="https://bottomlessthought23.wordpress.com">Bottomless Thought</a>
</div>
</div>
</article>
<footer class="footer">
<p><a href="https://www.facebook.com/bronson.carder">Facebook</a></p>
<p>-</p>
<p><a href="mailto:[email protected]">[email protected]</p>
<p>-</p>
<p><a href="https://discord.gg/WcXShk5r">Discord</p>
</footer>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/javascript.js">
</script>
</body>
</html>