-
Notifications
You must be signed in to change notification settings - Fork 1
/
contact.html
104 lines (95 loc) Β· 4.68 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Privacy Policy - DSC UNILAG</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="author" content="DSC University of Lagos"/>
<meta name="description" content="Developer Student Clubs (DSC) UNILAG is a Google Developers program for university students to learn mobile and web development skills.">
<meta name="keywords" content="dsc,dsc unilag,programming in unilag, clubs in unilag, google developers,programming, extra-curriculars, sub saharan africa, computer science"/>
<meta name="theme-color" content="#2F5BE7"/>
<link rel="manifest" href="manifest.json"/>
<link rel="icon" href="images/icon3.png" type="image/png"/>
<link rel="dns-prefetch" href="https://docs.google.com">
<link href='https://fonts.googleapis.com/css?family=Google+Sans:400,500,700|Material+Icons' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/styles.css">
</head>
<body style="background: #fff;">
<header style="background: #f1f3f4;">
<a class="header-logo" href="index.html">
<img src="images/assets/hero/gdsc_logo.svg" width="200" alt="DSC icon">
</a>
<ul class="header-links">
<li class="header-link"><a class="header-link" href="#about">About</a></li>
<li class="header-link"><a href="#technologies" class="header-link">Programs</a></li>
<li class="header-link"><a href="learn.html" class="header-link">Events</a></li>
<li class="header-link"><a href="#workshops" class="header-link">Blogs</a></li>
<li class="header-link"><a href="#team" class="header-link">Team</a></li>
<li class="header-link"><a href="contact.html" class="header-link">Contact Us</a></li>
<li class="header-link"><a href="faq.html" class="header-link">FAQs</a></li>
</ul>
<a href="http://dscunilag.dev/join" class="header-cta" rel="noreferrer" target="_blank">Join GDSC</a>
<span class="menubar">☰</span>
</header>
<nav>
<span class="close">✖</span>
<ul>
<li><a href="#about">About</a></li>
<li><a href="#technologies">Programs</a></li>
<li><a href="learn.html">Events</a></li>
<li><a href="#workshops">Blogs</a></li>
<li><a href="#team">Team</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li><a href="faq.html">FAQs</a></li>
</ul>
</nav>
<main style="padding: 20px;">
<div class="contact">
<div class="sidebar">
<p class="title">Get in Touch</p>
<div class="info-container">
<p>Chat With Us</p>
<p>dscunilag@gmail.com</p>
</div>
<div class="info-container">
<p>Call Us</p>
<p>+2349035131946</p>
</div>
<div class="info-container">
<p>Socials</p>
<p>2972</p>
</div>
</div>
<div class="form">
<form action="">
<div class="row">
<div class="input">
<label for="name">First Name</label>
<input type="text" placeholder="first name">
</div>
<div class="input">
<label for="name">Last Name</label>
<input type="text" placeholder="Last name">
</div>
</div>
<label for="name">Company Name</label>
<input type="text" placeholder="Company name">
<label for="name">Email Address</label>
<input type="text" placeholder="Email address">
<label for="name">Phone Number</label>
<input type="text" placeholder="Phone Number">
<label for="name">Message</label>
<textarea name="" id="" cols="30" rows="10"></textarea>
<div class="confirm">
<input type="checkbox" class="checkbox">
<label style="font-weight: 100;">I'd like to recieve more information about the company i understand and agree with Privacy Policy </label>
</div>
<button type="submit" class="submit">Submit</button>
</form>
</div>
</div>
</main>
<script src="js/custom.js"></script>
</body>
</html>