-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
56 lines (54 loc) · 2.03 KB
/
blog.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
<!DOCTYPE HTML>
<html>
<head>
<link href='http://fonts.googleapis.com/css?family=Raleway:300' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="Stylesheets/blog-stylesheet.css">
<title> Kailash Site</title>
</head>
<body>
<header>
<div class = "nav">
<ul>
<li><a href="index.html">Home</a></li><br>
<li><a href="projects.html">My Projects</a></li><br>
</ul>
</div>
<div class = "background-image">
<img class = "jellyfish" src ="imgs/jellyfish.jpeg">
</div>
</header>
<main class = "bloglist">
<ul>
<li><a href="blog/c1-chefs-kitchen.html">First Impressions</a></li>
<li><a href="blog/c3_thinking-style.html">Thinking Style</a></li>
<li><a href="blog/c4-tech-issues.html">Bandwidth Throttle</a></li>
<li><a href="blog/c5-feedback.html">Pairing Feelings</a></li>
<li><a href="blog/c6-stereotype-threat.html">Lone Wolf Stereotype</a></li>
<li><a href="blog/c7-values.html">Persistence</a></li>
<li><a href="blog/t1-git-blog.html">Version Control</a></li>
<li><a href="blog/t2-css-design.html">CSS Selectors</a></li>
<li><a href="blog/t3-arrays-hashes.html">Arrays</a></li>
<li><a href="blog/t4-enumerable-methods.html">Traverse Methods</a></li>
<li><a href="blog/t5-ruby-classes.html">Blog</a></li>
<li><a href="blog/t6-oop-concepts.html">Blog</a></li>
</ul>
</main>
<footer>
<ul class="icons">
<li>
<a href="https://www.linkedin.com/pub/kailash-duraiswami/42/611/4a2/"><img class="LinkedIn" src="imgs/LinkedIn.png"></a>
</li>
<li>
<a href="https://twitter.com/niceguykailash"><img class = "bluebird" src="imgs/bluebird.png"></a>
</li>
<li>
<a href="https://github.com/kduraiswami"><img class = "gitkit" src="imgs/gitkit.png"></a>
</li>
<li>
<a href="mailto:[email protected]"><img class = "envelope" src="imgs/enveloper.png"></a>
</li>
</ul>
</footer>
</body>
</html>