-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
86 lines (82 loc) · 3.28 KB
/
index.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
<link rel="stylesheet" href="css/style.css">
<title>Chase Lirette | Web Developer</title>
</head>
<body>
<header id="navbar">
<div class="container">
<div id="branding">
<h1>Chase Lirette <span class="highlight">Web Developer</span></h1>
</div>
<nav>
<ul>
<li><a class="links current" href="#about">About</a></li>
<li><a class="links" href="#work">Work</a></li>
<li><a class="links" href="#contact">Contact</a></li>
</ul>
</nav>
</div>
</header>
<section id="about">
<div class="container">
<h1>About</h1>
<div class="content">
<img src="./img/self.JPG" alt="" id="portrait">
<p>Hello! I am a software developer with experience building full stack web applications. Born and raised in southern Louisiana, I received my BA in Computer Science from the University of New Orleans, and now work as a full stack developer at Netchex.</p>
</div>
</div>
</section>
<section id="work">
<div class="container">
<div class="content">
<h1>Work</h1>
<p>I have experience working with all kinds of technologies!<br/>Here are some I know best.</p>
<div class="gallery">
<img src="./img/html5.png" alt="">
<img src="./img/nodejs.png" alt="">
<img src="./img/mongodb.png" alt="">
<img src="./img/css3.png" alt="">
<img src="./img/python.png" alt="">
<img src="./img/mysql.png" alt="">
<img src="./img/js.png" alt="">
<img src="./img/react.png" alt="">
<img src="./img/git.png" alt="">
</div>
</div>
</div>
</section>
<section id="contact">
<div class="container">
<h1>Contact</h1>
<p>Reach out to me if you have any questions, or just want to chat!</p>
<div class="form-div">
<form action="/submit" method="POST" name="contact" data-netlify="true" data-netlify-recaptcha="true">
<label for="name">Name</label>
<input type="text" name="name" id="name" required>
<label for="email">Email</label>
<input type="text" name="email" id="email" required>
<label for="message">Message</label>
<textarea name="message" required></textarea>
<div data-netlify-recaptcha="true"></div>
<input type="submit" value="Submit">
</form>
</div>
</div>
</section>
<footer>
<ul>
<li><a href="https://www.github.com/clirette" target="_blank"><i class="fa fa-github fa-2x"></i></a></li>
<li><a href="https://www.linkedin.com/in/chase-lirette/" target="_blank"><i class="fa fa-linkedin fa-2x"></i></a></li>
</ul>
<p>This site was created by Chase Lirette</p>
</footer>
<script src="https://cdn.jsdelivr.net/gh/cferdinandi/smooth-scroll/dist/smooth-scroll.polyfills.min.js"></script>
<script src="js/index.js"></script>
</body>
</html>