-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
82 lines (76 loc) · 3.42 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="style.css">
<title>Hauser Analytics</title>
</head>
<body>
<div class="Bod">
<div class="Header">
<div class="logo">Hauser Analytics</div>
<div class="links">
<a href="https://google.com">header link one</a>
<a href="https://google.com">header link two</a>
<a href="https://google.com">header link three</a>
</div>
</div>
<div class="Intro">
<div class="CatchText">
<div class="Title">Welcome to Hauser Analytics</div>
<div class="Subtitle">My name is Dr. Greg Hauser, and I've been working in the fields of
Industrial Engineering and Operations Research for 5 years. This
is my digital resume, where I'm showcasing some of the analytical
projects I've completed both in my career and on my own time.
My expertise is in linear and discrete optimization, statistical
inference, design of experiments, and time series analysis. I
work in a wide range of programming languages, and am currently
expanding into web development with a focus on
interactive/explanatory dashboards.
</div>
<button>Jump to gallery</button>
</div>
<div class="CatchImg">
<img src="" alt="This is a placeholder for an image">
</div>
</div>
<div class="Gallery">
<div class="Title">Featured Projects</div>
<div class="Cards">
<div class="Card1">
<img src="" alt="An Img">
<div class="CardSubTxt">This is subtext that goes under illustration/img</div>
</div>
<div class="Card2">
<img src="" alt="An Img">
<div class="CardSubTxt">This is subtext that goes under illustration/img</div>
</div>
<div class="Card3">
<img src="" alt="An Img">
<div class="CardSubTxt">This is subtext that goes under illustration/img</div>
</div>
<div class="Card4">
<img src="" alt="An Img">
<div class="CardSubTxt">This is subtext that goes under illustration/img</div>
</div>
</div>
</div>
<div class="Quote">
<div class="QuoteText">"I come from a state that raises corn and cotton, ..., and frothy eloquence neither convinces nor satisfies me. I'm from Missouri, and you have got to show me."</div>
<div class="QuoteAttr">- Willard Vandiver</div>
</div>
<div class="Contact">
<div class="ContactContainer">
<div class="ContactTitle">Contact Me</div>
<div class="ContactSubTitle">Email for interview and consulting services requests</div>
</div>
<button>Email</button>
</div>
<div class="Footer">
<div class="FooterText">Copyright Hauser Analytics 2021</div>
</div>
</div>
</body>
</html>