-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
46 lines (38 loc) · 1.63 KB
/
index.php
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
<!DOCTYPE html>
<html lang="en">
<?php $title = 'Josy Li | Front-End Web Developer in Vancouver'; include 'head.php'?>
<body>
<?php include 'nav.php'?>
<main>
<section id="home" class="section-height">
<div class="home-container">
<h2 class="intro-greeting">Howdy, I'm Josy!</h2>
<h1 class="title">Front-End Developer</h1>
<h2 class="intro-location">Based in Vancouver, BC</h2>
<div class="icon-box home-icon">
<a target="_blank" href="https://www.linkedin.com/in/josyli">
<div class="box">
<i class="fab fa-linkedin-in"></i>
</div>
</a>
<a href="mailto:josyliyh@gmail.com">
<div class="box">
<i class="far fa-envelope"></i>
</div>
</a>
<a target="_blank" href="https://github.com/josyliyh">
<div class="box">
<i class="fab fa-github"></i>
</div>
</a>
</div>
<!-- <a href="works.php" class="project-button">See my projects</a> -->
<div class="home-img">
<img src="./media/girl-plant.png">
</div>
<div>
</section>
</main>
</body>
<script src="./scripts/script.js"></script>
</html>