Skip to content

Commit

Permalink
Create contact.html
Browse files Browse the repository at this point in the history
  • Loading branch information
aramsodhi committed Nov 30, 2023
1 parent 8086729 commit b472516
Showing 1 changed file with 45 additions and 0 deletions.
45 changes: 45 additions & 0 deletions contact.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">

<link rel="icon" href="./images/logo-svg.svg">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
<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=Roboto:wght@300;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Chelsea+Market&family=Lexend+Deca:wght@400;500&family=Outfit:wght@200;300&family=Roboto+Mono:wght@180;700&family=Schoolbell&family=Space+Grotesk:wght@300&display=swap" rel="stylesheet">
<link href="./styles/styles.css" rel="stylesheet">
<link href="./styles/new-shit-greg-added.css" rel="stylesheet">
<title>Contact | Vikings Robotics</title>
</head>
<body>


<div id="header"></div>

<div class="contact-container">
<div class="contact-form">
<h1>Contact Us:</h1>
<textarea id="name-input" placeholder="Name"></textarea>
<textarea id="from-input" placeholder="From"></textarea>
<textarea id="to-input" placeholder="To"></textarea>
<textarea id="message-input" placeholder="Message"></textarea>
<button id="send-btn">Send</button>
</div>
</div>


<div id="footer"></div>
<script src="https://code.jquery.com/jquery-3.6.0.js"integrity=" sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script src="https://smtpjs.com/v3/smtp.js"></script>
<script src="./src/script.js"></script>
<script>
$(function(){
$("#header").load("header.html");
$("#footer").load("footer.html");
});
</script>
</body>
</html>

0 comments on commit b472516

Please sign in to comment.