-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
68 lines (61 loc) · 2.84 KB
/
index.html
File metadata and controls
68 lines (61 loc) · 2.84 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rob Tapella - Portfolio</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">
<div class="logo">ROB TAPELLA</div>
<nav class="nav">
<a href="index.html" class="active">HOME</a>
<a href="about.html">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>
<main class="main">
<h1 class="page-title">Work examples</h1>
<div class="work-grid">
<a href="methane.html" class="work-card">
<div class="card-image"
style="background-image: url('images/methane-hero.jpg'); background-size: cover; background-position: center;">
<h2 class="card-title">Methane Map Web Site</h2>
</div>
</a>
<a href="data-dashboard.html" class="work-card">
<div class="card-image"
style="background-image: url('images/rs-hero.png'); background-size: cover; background-position: center;">
<h2 class="card-title">Data Dashboard for DNA Sequencer</h2>
</div>
</a>
<a href="rna-quantification.html" class="work-card">
<div class="card-image"
style="background-image: url('images/tmfv-box-tx.png'); background-size: contain; background-position: center; background-repeat: no-repeat; background-color: #f5f5f5;">
<h2 class="card-title">RNA Quantification Reagent</h2>
</div>
</a>
<a href="service-map.html" class="work-card">
<div class="card-image"
style="background-image: url('images/luxe-map-lowrez.png'); background-size: cover; background-position: center;">
<h2 class="card-title">Service Journey Map for Luxe Valet</h2>
</div>
</a>
</div>
</main>
<script src="js/script.js"></script>
<script src="js/dropdown.js"></script>
</body>
</html>