-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
92 lines (89 loc) · 4.7 KB
/
index.html
File metadata and controls
92 lines (89 loc) · 4.7 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Ben Lewin</title>
<!-- CSS -->
<link href="https://fonts.googleapis.com/css2?family=Cabin&family=Chau+Philomene+One:ital@1&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css" integrity="sha384-9aIt2nRpC12Uk9gS9baDl411NQApFmC26EwAOH8WgZl5MYYxFfc+NcPb1dKGj7Sk" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
<!-- JS, Popper.js, and jQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/popper.js@1.16.0/dist/umd/popper.min.js" integrity="sha384-Q6E9RHvbIyZFJoft+2mJbHaEWldlvI9IOYy5n3zV9zzTtmI3UksdQRVvoxMfooAo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js" integrity="sha384-OgVRvuATP1z7JjHLkuOU7Xw704+h835Lr+6QL9UvYjZE3Ipu6Tp75j7Bh/kR0JKI" crossorigin="anonymous"></script>
</head>
<body>
<header>
<nav>
<div class="mobile-nav-container">
<h1>Ben Lewin</h1>
<img class="menu-icon" src="images/hamburger_menu.png" alt="Menu Icon">
</div>
<div class="menu-items menu-items-closed">
<a href="#home">Home</a>
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#contact">Contact</a>
</div>
</nav>
</header>
<main>
<a name="home"></a>
<section class="home-section">
<h2>Hi, I'm Ben</h2>
<img id="headshot" src="images/Ben-profile.jpg" alt="Headshot">
</section>
<a name="about"></a>
<section class="about-section">
<h2>About Me</h2>
<p>I am a software engineer with a customer centered outlook and experience in product management. My experience in product management has given me a broader view of engineering organizations, and has helped me become a great individual contributor as well as a great member of any team. I am looking to move back into a software role and am excited to dig into technical challenges again.</p>
<br />
<h3>Technical Skills</h3>
<p>JavaScript | React.js | C | C++ | HTML5 | CSS3 | SCSS | Styled-Components | Axios | Ruby | Ruby on Rails | Git | Linux | Python | AWS | MongoDB | PostgreSQL | Jira | JQuery | Java | Trello | Node.js | Express | Microsoft Office | Google Suite</p>
</section>
<a name="projects"></a>
<section class="projects-section">
<h2>Projects</h2>
<div class="project-container">
</div>
</section>
<a name="contact"></a>
<section class="contact-section">
<h2>Get in Contact</h2>
<h4><a href="mailto: blewin1@gmail.com">blewin1@gmail.com</a></h4>
<h4><a href="https://www.linkedin.com/in/benjamin-lewin/">linkedin.com/in/benjamin-lewin</a></h4>
<h4><a href="https://github.com/blewin1">github.com/blewin1</a></h4>
<!-- <form class="contact-form">
<div class="name-email-container">
<div class="form-group">
<label for="nameInput">Name</label>
<input type="text" class="form-control" id="nameInput" placeholder="Firstname Lastname">
</div>
<div class="form-group">
<label for="emailInput">Email address</label>
<input type="email" class="form-control" id="emailInput" placeholder="name@example.com">
</div>
</div>
<div class="form-group">
<label for="messageInput">How Can I Help?</label>
<textarea class="form-control" id="messageInput" rows="3"></textarea>
</div>
<div class="button-container">
<button type="submit" class="btn btn-primary btn-lg">Submit</button>
</div>
</form> -->
</section>
</main>
<footer>
<span>© Ben Lewin 2020</span>
<div class="links">
<a href="mailto: blewin1@gmail.com" target="_blank">Email</a>
<a href="https://github.com/blewin1" target="_blank">Github</a>
<a href="https://www.linkedin.com/in/benjamin-lewin/" target="_blank">linkedIn</a>
</div>
</footer>
<script src="scripts/app.js"></script>
</body>
</html>