-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontact.html
More file actions
60 lines (56 loc) · 2.91 KB
/
Copy pathcontact.html
File metadata and controls
60 lines (56 loc) · 2.91 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js" integrity="sha384-DfXdz2htPH0lsSSs5nCTpuj/zy4C+OGpamoFVy38MVBnE+IbbVYUew+OrCXaRkfj" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/js/bootstrap.bundle.min.js" integrity="sha384-ho+j7jyWK8fNQe+A12Hb8AhRq26LrZ/JpcUGGOn+Y7RsweNrtN/tE3MoK7ZeZDyx" crossorigin="anonymous"></script>
<link href="styles.css" 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=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Playpen+Sans:wght@100..800&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap" rel="stylesheet">
<title>Tech Explained 101 Blog</title>
</head>
<body>
<header class="header-class">
<div class="left-side">
<div class="left-side-content">
<a href="index.html">
Tech Explained 101 Blog
</a>
</div>
</div>
<div class="right-side">
<div class="right-side-content">
<div class="right-side-header-content">
<a href="blogs.html">
Blogs
</a>
</div>
<div class="right-side-header-content">
<a href="about.html">
About
</a>
</div>
<div class="right-side-header-content">
<a href="contact.html" style="text-decoration: underline; text-decoration-thickness: 2px;">
Contact
</a>
</div>
</div>
</div>
</header>
<main class="main-div-2">
<div class="centered-div">
<!-- Message the person after taking in their name and email-->
<div class="message-greet">Heyy, Feel free to drop a message!</div>
<div class="top-centered-div">
<input id="name-input" type="text" placeholder="Name">
<input id="email-input" type="email" placeholder="Email">
</div>
<div class="bottom-centered-div">
<textarea id="message-input" placeholder="Enter a message"></textarea>
</div>
</div>
</main>
</body>
</html>