mirror of
https://github.com/Rushilwiz/neurosecure.git
synced 2025-04-03 20:10:16 -04:00
126 lines
4.0 KiB
HTML
126 lines
4.0 KiB
HTML
<!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>NeuroSecure</title>
|
|
<link rel="stylesheet" href="/css/contact.css" />
|
|
|
|
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="/favicon/favicon-32x32.png">
|
|
<link rel="icon" type="image/png" sizes="16x16" href="/favicon/favicon-16x16.png">
|
|
<link rel="manifest" href="/favicon/site.webmanifest">
|
|
<link rel="mask-icon" href="/favicon/safari-pinned-tab.svg" color="#5bbad5">
|
|
<meta name="msapplication-TileColor" content="#da532c">
|
|
<meta name="theme-color" content="#ffffff">
|
|
</head>
|
|
<body>
|
|
<div class="nav">
|
|
<nav>
|
|
<div class="logo">
|
|
<h4>
|
|
<img src="/css/res/brain.svg" style="width: 28px"/>
|
|
<!-- <img src="/css/res/plus.svg" /> -->
|
|
<!-- <img src="/css/res/lock.svg" /> -->
|
|
<span>NeuroSecure</span>
|
|
</h4>
|
|
</div>
|
|
<ul>
|
|
<li><a href="/">Home</a></li>
|
|
<li><a href="/project">Timeline</a></li>
|
|
<li><a href="/team">Our Team</a></li>
|
|
<li><a href="/contact">Contact Us</a></li>
|
|
<span>NeuroSecure</span>
|
|
</ul>
|
|
<div class="burger">
|
|
<div class="line1"></div>
|
|
<div class="line2"></div>
|
|
<div class="line3"></div>
|
|
</div>
|
|
</nav>
|
|
</div>
|
|
|
|
<div class="contact-wrapper">
|
|
<section class="contact">
|
|
<form id="contact" action="/" method="post">
|
|
<h1>Get in contact</h1>
|
|
<fieldset>
|
|
<fieldset>
|
|
<input
|
|
placeholder="Your name"
|
|
name="name"
|
|
type="text"
|
|
tabindex="1"
|
|
required
|
|
/>
|
|
</fieldset>
|
|
<fieldset>
|
|
<input
|
|
placeholder="Your email"
|
|
name="email"
|
|
type="email"
|
|
tabindex="2"
|
|
required
|
|
/>
|
|
</fieldset>
|
|
<fieldset>
|
|
<input
|
|
placeholder="Your phone number (optional)"
|
|
name="phone"
|
|
type="tel"
|
|
tabindex="3"
|
|
required
|
|
/>
|
|
</fieldset>
|
|
<fieldset>
|
|
<textarea
|
|
placeholder="Type your message here..."
|
|
name="message"
|
|
tabindex="4"
|
|
></textarea>
|
|
</fieldset>
|
|
<button type="submit">submit</button>
|
|
</fieldset>
|
|
<p class="alternative">
|
|
Or, you can feel free to email us
|
|
<a href="mailto:leonjia0942@gmail.com">here</a>.
|
|
</p>
|
|
</form>
|
|
</section>
|
|
</div>
|
|
|
|
<footer>
|
|
<div class="footer">
|
|
<div class="columns">
|
|
<div class="logo">
|
|
<h4>
|
|
<img src="/css/res/brain.svg" />
|
|
<!-- <img src="/css/res/plus.svg" />
|
|
<img src="/css/res/lock.svg" /> -->
|
|
<span>NeuroSecure</span>
|
|
</h4>
|
|
</div>
|
|
<ul>
|
|
<li>Important Links</li>
|
|
<li><a href="">Link</a></li>
|
|
<li><a href="">Another Link</a></li>
|
|
<li><a href="">Yet another link</a></li>
|
|
</ul>
|
|
<ul>
|
|
<li>More Links</li>
|
|
<li><a href="">Link</a></li>
|
|
<li><a href="">Another Link</a></li>
|
|
<li><a href="">Yet another link</a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="copyright">
|
|
© All rights reserved 2021<br />designed by
|
|
<a target="_blank" href="https://github.com/rushilwiz"
|
|
>rushil umaretiya</a
|
|
>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
</body>
|
|
</html> |