-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcontact.html
More file actions
129 lines (121 loc) · 6.06 KB
/
Copy pathcontact.html
File metadata and controls
129 lines (121 loc) · 6.06 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
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<!-- Below styles for social buttons, but designer can use his own styles, it just a sample! -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>CONTACT - INOVA</title>
<link rel="stylesheet" href="css/style.css"/>
<link rel="stylesheet" href="css/contact_style.css"/>
</head>
<body>
<header>
<h1 class="logo">INOVA</h1>
<nav>
<ul class="header-menu">
<li><a href=index.html>home</a></li>
<li><a href="about.html">About us</a></li>
<li><a href="staff.html">Our staff</a></li>
<li><a href="schedule.html">Schedule</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li class="active">Registration & contact</li>
</ul>
</nav>
<form name="search" action="#" method="get">
<input class="search" type="text" placeholder="Search..."><button class="search_button" type="submit">GO</button>
</form>
</header>
<main>
<h2>CONTACT INFORMATION</h2>
<ul>
<li>Phone: 44444444</li>
<li>Our office's adress: Lysfremtidsgate 1, H0777, Oslo</li>
<li>Email: <a href = "mailto: inova@gmail.com">inova@gmail.com</a></li>
</ul>
<h1>REGISTRATION OF INNOVATION </h1>
<div class="form-heading">
<h2 class="title">For us to help you with your own frugal innovation idea we ask you to please fill out this form:</h2>
</div>
<div class="form-body">
<form method="POST">
<div class="form-row">
<div class="name">What is the idea? (describe the idea with maximum 100 words):</div>
<div class="value">
<div class="input-group">
<textarea class="inn-text" name="message" placeholder="Enter your text here"></textarea>
</div>
</div>
</div>
<div class="form-row">
<div class="name">What is the goal with your idea?</div>
<div class="value">
<div class="input-group">
<textarea class="inn-text" name="message" placeholder="Enter your text here"></textarea>
</div>
</div>
</div>
<div class="form-row">
<div class="name">What is the main thing you think we can do to help you making it real?</div>
<div class="value">
<div class="input-group">
<textarea class="inn-text" name="message" placeholder="Enter your text here"></textarea>
</div>
</div>
</div>
<div class="form-row">
<div class="name">Full name</div>
<div class="value">
<input class="input-text" type="text" name="full_name">
</div>
</div>
<div class="form-row">
<div class="name">Your phone number</div>
<div class="value">
<input class="input-text" type="text" name="phone_number">
</div>
</div>
<div class="form-row">
<div class="name">Home adress</div>
<div class="value">
<input class="input-text" type="text" name="home_adress">
</div>
</div>
<div class="form-row">
<div class="name">Your email address</div>
<div class="value">
<div class="input-group">
<input class="input-email" type="email" name="email" placeholder="example@email.com">
</div>
</div>
</div>
<div class="form-row">
<div class="name">Upload photo or text document with description of your innovation. If any.
Is there anything else you want to mention regarding the idea and how we can help?
(dont be shy! Here you can mention/ask anything):</div>
<div class="value">
<input type="file" id="your-photo" name="your-photo">
<label class="label-photo" for="file">Choose file</label>
</div>
<div class="photo-info">Max file size 10 MB</div>
</div>
</div>
</form>
<div class="form-footer">
<button class="btn-submit" type="submit">Register Innovation</button>
</div>
</main>
<footer class="footer">
<div class="upper_footer">
<h1 class="logo_footer">INOVA</h1>
<div class="social">
<h3>Social networks</h3>
<a href="http://facebook.com/" class="fa fa-facebook" target="new" title="facebook.com" style="font-size: 25px; color: white;"></a>
<a href="http://instagram.com/" class="fa fa-instagram" target="new" title="instagram.com" style="font-size: 25px; color: white;"></a>
<a href="http://twitter.com/" class="fa fa-twitter" target="new" title="twitter.com" style="font-size: 25px; color: white;"></a>
<a href="http://youtube.com/" class="fa fa-youtube" target="new" title="youtube.com" style="font-size: 25px; color: white;"></a> </div>
</div>
<div class="copyright-text"><p>INOVA © 2020 All rights reserved</p></div>
</footer>
</body>
</html>