-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
85 lines (68 loc) · 2.65 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
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href='https://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Lora' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="stylesheets/default.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css">
<title>Bill's Website</title>
</head>
<body>
<nav>
<ul class="navbar">
<li><a href="blog/index.html" target="_blank">Blog</a></li>
<li><a href="#projects">Projects</a></li>
<li><a href="#about">About</a></li>
<li><a href="#home">Home</a></li>
</ul>
</nav>
<div id="home">
<section>
<h1>Welcome!</h1>
</section>
</div>
<div id="about" class="about-me">
<section id="about-me-left">
<div class="about-left about-me">
<h4 class="contact-me-h4">Contact Me</h4>
<ul>
<li><a href="mailto:[email protected]"><i class="fa fa-envelope"></i><br>[email protected]</a></li>
<li><br><a href="https://github.com/billdevcode" target="_blank"><i class="fa fa-github"></i><br>Github</a></li>
<li><br><a href="https://www.linkedin.com/in/dengbilly" target="_blank"><i class="fa fa-linkedin-square"></i><br>LinkedIn</a></li>
</ul>
</div>
</section>
<section id="about-me-right">
<div class="about-right about-me">
<h4>Bill Deng</h4>
<img src="imgs/bill-picture.jpg" alt="Picture of Bill">
<p class="first-p">
Hello my name is Bill. I'm currently living in San Francisco and attending Dev Bootcamp's 19-weeks
Full-Stack Web Developer program. During this 19-weeks, I have an opportunity to collaborate with
highly motivated and energetic people just like myself. It's going to be a life-changing experience
and I'm looking forward to it.
</p>
<p>
This site is a work-in-progress and will serve as a showcase for my weekly blogs and projects.
I will add new features while I go through this journey.
</p>
</div>
</section>
</div>
<div class="projects">
<section id="projects">
<h2>My Projects</h2>
<img src="imgs/placeholder.jpg" alt="Placeholder Image">
<img src="imgs/placeholder.jpg" alt="Placeholder Image">
<img src="imgs/placeholder.jpg" alt="Placeholder Image">
</section>
</div>
<footer>
<p>
Made with HTML, CSS and coffee © 2016 Bill Deng
</p>
</footer>
</body>
</html>