-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappraisals.html
More file actions
90 lines (69 loc) · 2.34 KB
/
appraisals.html
File metadata and controls
90 lines (69 loc) · 2.34 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
<!doctype html>
<html>
<head>
<title> LLuthier </title>
<script src="https://kit.fontawesome.com/748bb466e3.js"></script>
<link href="https://fonts.googleapis.com/css?family=Lato|Raleway&display=swap"
rel="stylesheet">
<style type="text/css">
html,body {font-family: arial, helvetica;}
</style>
<link rel='stylesheet' type = "text/css" href="appraisals.css">
<link rel='stylesheet' type='text/css' href="universal.css">
</head>
<body>
<div class="header">
<a href='index.html'>
<i id='logo' class="fas fa-guitar header-text">
</i>
</a>
<div class="head-text header-but" >
<a href='appraisals.html'>
Appraisals
</a>
</div>
<div class="head-text header-but" >
<a href='about.html'>
About / Contact
</a>
</div>
</div>
<div class="title">
<div class="title-text">Appraisals</div>
</div>
<div class='body-background'>
<p id='form-instruc'>
Just fill out this form and I will respond with a price
appraisal and a time estimate for the repair. Financing
services are available for special cases.
</p>
<div class='form-data'>
<input type="text" class="small-input" name="name" id="name"
placeholder="Enter Your Name...">
</br>
<div id='mid-form'>
<input type="text" class="small-input" name="email" id="email"
placeholder="Your Email...">
<select class='instr-type' size='1' placeholder="Instrument">
<option value='' disabled selected> Instrument </option>
<option value='1'> Violin </option>
<option value='2'> Viola </option>
<option value='3'> Cello </option>
<option value='4'> Bass </option>
<option value='5'> Mandolin </option>
<option value='6'> Banjo </option>
<option value='7'> Ukalele </option>
<option value='9'> Lute </option>
<option value='10'> Other </option>
</select>
</div>
</br>
<input type="text" class="big-input" name="message"
id="message"
placeholder="Things I should know about your instrument / situation... ">
</br>
<input type='Submit' value='Submit' id=submit>
</div>
</div>
</body>
</html>