-
Notifications
You must be signed in to change notification settings - Fork 1
/
interview.html
59 lines (51 loc) · 1.02 KB
/
interview.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
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta charset="UTF-8">
<title>interview with the devs</title>
<style>
.interview-body {
margin-top: 10%;
margin-left: 15%;
margin-right: 15%;
display: flex;
justify-content: center;
line-height: 1.3;
flex-direction: column;
}
.question {
font-weight: bolder;
}
.answer {
margin-left: 1em
}
.interview-title {
font-size: 6.9em;
font-family: serif;
}
.q-and-a {
font-family: sans-serif;
}
</style>
</head>
<body class='interview-body'>
<h1 class='interview-title'>
THE INTERVIEW
</h1>
<div class='q-and-a'>
<p class='question'>
Q: What inspired you to join this team?
</p>
<p class='answer'>
A: //I have no idea how you all are supposed to answer this...
</p>
</div>
<div class='q-and-a'>
<p class='question'>
Q: What do you think of stephen?
</p>
<p class='answer'>
A:
</p>
</div>
</body>
</html>