-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
126 lines (99 loc) · 4.09 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=3, minimum-scale=0.5">
<title>Contact</title>
<link href="css/contact.css" rel="stylesheet">
</head>
<body>
<header>
<div class="container-nav">
<div class="logo">
<a href="home.html"><img id="logoimage" src="images/branding/logo.png" alt="logo"></a>
</div>
<nav id="navigation-normal">
<ul>
<li><a href="home.html">Home</a ></li>
<li><a href="shop.html">Shop</a ></li>
<li ><a href="about.html">About<div class="triangle"></div></a >
<ul class="secondary-style">
<li><a href="about.html">About Us</a></li>
<li><a href="news.html">News</a></li>
<li><a href="contact.html">Contact Us</a></li>
</ul>
</li>
<li><a href="cart.html">Cart</a ></li>
</ul>
</nav>
<nav id="navigation-hamburger">
<div id="menuToggle">
<input type="checkbox" id="checkbox-hamburger">
<span></span>
<span></span>
<span></span>
<ul id="menu">
<li ><a href="home.html">Home</a ></li>
<li id="hamburger-style-1"><a href="shop.html">Shop</a ></li>
<li id="hamburger-style-2"><a href="about.html">About Us</a></li>
<li><a href="news.html">News</a></li>
<li><a href="contact.html">Contact Us</a></li>
<li id="hamburger-style-3"><a href="cart.html">Cart</a ></li>
</ul>
</div>
</nav>
</div>
</header>
<div class="container-content" >
<div class="title">
<h1>Contact Us</h1>
<p>Get in touch to get more information about our work and how we can work together.</p>
</div>
<div class="description">
<div>
<p>I'd like to talk about:</p>
</div>
<div class="radio-container">
<div class="radio">
<input class="radio-type" type="radio" id="commercial-and-partnership-opportunities" name="response">
<label for="commercial-and-partnership-opportunities">Commercial/partnership opportunities</label>
</div>
<div class="radio">
<input class="radio-type" type="radio" id="media-and-press-inquiry" name="response" value="no">
<label for="media-and-press-inquiry">Media/press inquiry </label>
</div>
<div class="radio">
<input class="radio-type" type="radio" id="career-at-here" name="response" value="no">
<label for="career-at-here">Career at here</label>
</div>
</div>
<div id="form">
<h2 class="form-title">Contact Form</h2>
<div class="personal-information">
<label for="fname">First name:</label><br>
<input type="text" id="fname" name="fname" placeholder="Enter here">
<label for="lname">Last name:</label><br>
<input type="text" id="lname" name="lname" placeholder="Enter here">
<label for="email">Email Address:</label><br>
<input type="text" id="email" name="email" placeholder="Enter here">
<label >Dear Fang Ceramics:</label ><br>
<textarea name="feedback" style="height: 140px;" rows="5"></textarea>
</div>
<div class="submit-button">
<input type="submit" class="interactive-button" value="Submit">
</div>
</div>
</div>
</div>
<footer>
<div class="footer-container">
<div class="links-container">
<a href="styleguide.html" class="in-text-link">Style Guide</a>
<a href="styleguide.html#citations" class="in-text-link">Citation</a>
<a href="https://github.com/Fangljf/P02-Company.git" class="in-text-link">Git Repository</a>
</div>
<p>© 2023 Fang Ceramics.</p>
</div>
</footer>
</body>
</html>