-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
121 lines (116 loc) · 7.13 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<link rel="stylesheet" href="assets/css/index.css">
<link href='http://fonts.googleapis.com/css?family=Lato:100,300,400,700' rel='stylesheet' type='text/css'>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script src="assets/js/jquery.scrollTo.js"></script>
<script src="assets/js/script.js"></script>
</head>
<body>
<div class="nav-container">
<nav>
<ul>
<li id="contact"><a href="#">Contact us</a></li>
<li id="faq-link"><a href="#faq">FAQ</a></li>
<li id="about"><a href="#about-us">About us</a></li>
<li id="home"><a href="#">Home</a></li>
</ul>
</nav>
</div>
<div id="modal-container">
<div id="modal-overlay"></div>
<div id="modal-box">
<!-- Q2: Your Content for Modal Box Here -->
<div id="modal-header">Contact us</div>
<div class="horizontal-rule"></div>
<div id="modal-content">
<div id="modal-content-piece">
<h2> By Email: </h2>
roopsingh93@berkeley.edu
</div>
<div id="modal-content-piece">
<h2> By Phone: </h2>
(408) 476-6051
</div>
<div id="modal-content-piece">
<h2> Some details: </h2>
When you contact us, be sure to have information regarding the make/model of your laptop, computer, or external hard drive as well as the storage capacity of the device.
</div>
</div>
<div id="modal-footer">
<div id="close" class="button">Close</div>
</div>
</div>
</div>
<!-- Jumbotron -->
<div id="jumbotron">
<div id="jumbotron-welcome">
<h1>The Hard Drive Guys</h1>
<h2>No headaches, guaranteed. Data recovery starting at $49.</h2>
</div>
</div>
<!-- About us -->
<div id="about-us">
<div class="about-us-title">
About us. <span class="text-muted">What you can count on.</span>
</div>
<div id="snippet-container">
<div class="snippet">
<div class="snippet-pic"><img src="assets/img/clock.png"></div>
<div class="snippet-title">Service at your convenience.</div>
<div class="snippet-text">
Our qualified professionals can meet you at your own convenience. Meet anytime and anywhere. Have an issue at the office? We've got you covered. Want service in the convenience of your own home? Sit back and relax while we take care of the problem for you.
</div>
</div>
<div class="snippet">
<div class="snippet-pic"><img src="assets/img/sprinting-man.png"></div>
<div class="snippet-title">Fast and reliable.</div>
<div class="snippet-text">
If your problem is urgent, our response is urgent. We can meet you within a 24-48 hour window, depending on your location. You can choose to either be serviced at your location or arrange a pick-up and drop-off. Whichever is most convenient for you!
</div>
</div>
<div class="snippet">
<div class="snippet-pic"><img src="assets/img/lock.png"></div>
<div class="snippet-title">Peace of mind.</div>
<div class="snippet-text">
We respect your needs and privacy. Our professionals are courteous and respectful. Our job is to leave you with a smile on your face and your data recovered. We never look at your personal information. Trust us, we hate what the NSA does too.
</div>
</div>
</div>
<div class="about-us-title">Our mission.<span class="text-muted"> We do good things.</span></div>
<div id="mission">
<div id="mission-pic"><img src="assets/img/confused-woman.jpg"></div>
<div id="mission-statement">
<h2>The Hard Drive Guys was born out of frustration with existing data recovery services. You shouldn't be emptying your purse for a headache.</h2>
At first, the Hard Drive Guys was just a side hobby for a few college kids. Soon enough, it turned into much more than that. Your memories, personal notes, business documents, and photos are stored on your computer. However, when those are lost, it can feel like your whole world has been turned upside down.
At HDG, we don't want anyone to ever have that sinking feeling in their stomach. We provide industry leading data recovery services that don't cost an arm and a leg. Scroll down for more information.
</div>
</div>
</div>
<div id="faq">
<div class="faq-title">FAQ. <span class="text-muted">Ask us anything.</span></div>
<div class="snippet">
<div class="snippet-title"><span class="text-muted">What services do you provide?</span></div>
<div class="snippet-text">
The Hard Drive Guys focus on data recovery. We recover information on PCs/Macs that have crashed, been attacked by viruses, accidental deletion, etc.
</div>
</div>
<div class="snippet">
<div class="snippet-title"><span class="text-muted">How much does it cost?</span></div>
<div class="snippet-text">
Our services start at $49. Most services usually cost this amount. Exceptions occur when the customer is seeking recovery for multiple hard drives or when our technicians have to drive over 25 miles (they're based out of San Jose). Contact us with your needs and location and we can give you an exact quote. We want to save you as much as possible!
</div>
</div>
<div class="snippet">
<div class="snippet-title"><span class="text-muted">How does it work?</span></div>
<div class="snippet-text">
Contact us and fill out the information in the required fields. One of our team members will get back to you with a few hours to set up an appointment. Once the team member arrives at the location of your choosing, we'll recover your information. Or, if you are unable to meet, we can arrange a pick-up and drop-off.
</div>
</div>
</div>
</body>
</html>