-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabout.html
More file actions
69 lines (64 loc) · 3.58 KB
/
about.html
File metadata and controls
69 lines (64 loc) · 3.58 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Rob Tapella</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header class="header">
<a href="index.html" class="logo">ROB TAPELLA</a>
<nav class="nav">
<a href="index.html">HOME</a>
<a href="about.html" class="active">ABOUT</a>
<div class="dropdown">
<a href="#" class="dropbtn">WORK</a>
<div class="dropdown-content">
<a href="methane.html">Methane Map Web Site</a>
<a href="data-dashboard.html">DNA Sequencing Data Dashboard</a>
<a href="rna-quantification.html">RNA Quantification Reagent</a>
<a href="service-map.html">Service Journey Map</a>
</div>
</div>
</nav>
</header>
<div class="about-container">
<div class="content-section">
<div class="about-content">
<div class="about-image-container">
<img src="images/about-rob.png" alt="Rob Tapella" class="about-image">
</div>
<div class="about-text">
<h1 class="section-overlay">ABOUT ROB</h1>
<p>I am a designer and product manager who takes a strategic end-to-end approach to making
interactive products. Find me on <a href="https://www.linkedin.com/in/robtapella">LinkedIn</a>.
</p>
<br>
<p>I feel that user research is critical to decision-making during the product definition process,
and in obtaining feedback while iterating on designs. To me, design is about both building and
understanding. While best practices and experience can absolutely help to create engaging
interactions, identifying the specific goals, contexts, and behaviors of users is necessary to
focus and organize a solution to a real problem. I look at products from many angles including
commercial, technical, and from the end-user experience.</p>
<br>
<p>My background is in the sciences, especially in life science research tools like DNA sequencers,
real-time PCR products, genome sequence databases and genomics knowledge management software. I
also worked for NASA JPL designing some space software and mostly not-space search software. I
like working with complex systems, particularly those that include a combination digital and
real-world interactions.</p>
<br>
<p>I am interested in science, health care, tea and coffee, travel, culture, languages, history and
archaeology. Discovering new perspectives on the world keeps me exploring. I also have about
seven email apps on my phone and like to try out new styles of calendars and to-dos.</p>
</div>
</div>
</div>
</div>
<script src="js/script.js"></script>
<script src="js/dropdown.js"></script>
</body>
</html>