-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnotebook.html
More file actions
71 lines (60 loc) · 3.11 KB
/
notebook.html
File metadata and controls
71 lines (60 loc) · 3.11 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
70
71
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rebecca Peterson Portfolio Website</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/7.0.0/normalize.min.css">
<script src="https://kit.fontawesome.com/f6824ea593.js" crossorigin="anonymous"></script>
<link href="https://fonts.googleapis.com/css?family=Lora:400,700|Roboto+Slab:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<header>
<button class="nav-toggle" aria-label="toggle navigation">
<span class="hamburger"></span>
</button>
<nav class="nav">
<ul class="nav__list">
<li class="nav__item"><a href="index.html#about" class="nav__link">About me</a></li>
<li class="nav__item"><a href="portfolio-item-4.html" class="nav__link">Performances</a></li>
<li class="nav__item"><a href="notebook.html" class="nav__link">Tech projects</a></li>
</ul>
</nav>
</header>
<!--Introduction-->
<section class="intro" id="home">
<h1 class="section__title section__title--intro">
Rebecca <strong>Peterson</strong>
</h1>
<p class="section__subtitle section__subtitle--intro">Developer</p>
</section>
<div class="portfolio-item-individual">
<img src="img/services-bg.jpg" alt="">
<p>Using Jupyter Notebooks and the Pandas library in Python, you can create data visualizations to explore hidden relationships between variables in a given dataset.</p>
<p>Follow along in this<a class="social-list__link" href="https://github.com/rebecca-pete/sea-nyc-weather/blob/master/report.ipynb">Jupyter Notebook</a>to compare the weather patterns of Seattle and New York City.</p>
</div>
<!--Footer-->
<footer class="footer">
<a href="mailto:rebecca.peterson.soprano@gmail.com" class="footer__link">rebecca.peterson.soprano@gmail.com</a>
<ul class="social-list">
<li class="social-list__item">
<a class="social-list__link" href="https://github.com/rebecca-pete">
<i class="fab fa-github"></i>
</a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="https://twitter.com/rebecca_soprano">
<i class="fab fa-twitter"></i>
</a>
</li>
<li class="social-list__item">
<a class="social-list__link" href="https://soundcloud.com/rebecca_peterson_soprano/caro-nome-clip-rebecca-peterson-1">
<i class="fab fa-soundcloud"></i>
</a>
</li>
</ul>
</footer>
<script src="js/index.js"></script>
</body>
</html>