-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog_template.html
52 lines (39 loc) · 1.6 KB
/
blog_template.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
<!doctype html>
<html>
<head>
<title>NEEDS OWN TITLE</title>
<meta charset="UTF-8">
<link type="text/css" rel="stylesheet" href="blog_template.css">
</head>
<header>
<div class="nav">Projects</div>
<div class="nav">About Me</div>
<div class="nav">Blog</div>
<div class="nav">Contact</div>
</header>
<body>
<div id="content">
<h1 id="title">Blog Title</h1>
<h3>Header</h3>
<p>August 2nd, 2015</p>
<div id="text_body">
<p>My name is Christopher Tseng. I am currently enrolled in the Dev Bootcamp Program. This site will contain my portfolio of my work as well as a documentation of my experiences throughout the program.</p>
<p id="blog-nav">
<a href="#">Previous</a>
<a href="#">Index</a>
<a href="#">Next</a>
</p>
</div>
</div>
<div id="second">
<h1>About Me</h1>
<img src="../imgs/profile.png"/ id="profile_img">
<p id="bio">My name is Christopher Tseng. I am currently enrolled in the Dev Bootcamp Program. This site will contain my portfolio of my work as well as a documentation of my experiences throughout the program. </p>
<p id="social"><a href="https://www.facebook.com/chris.tseng.31">Facebook</a> </p>
<p id="social"><a href="https://twitter.com/ctkochan22">Twitter</a> </p>
<p id="social"><a href="https://www.linkedin.com/profile/view?id=193525667&trk=nav_responsive_tab_profile_pic">LinkedIn</a> </p>
<p id="social"><a href="http://www.quora.com/Christopher-Tseng-2">Quora</a> </p>
<p id="social"><a href="https://github.com/ctkochan22">GitHub</a> </p>
</div>
</body>
</html>