-
Notifications
You must be signed in to change notification settings - Fork 4
/
blogs.html
71 lines (69 loc) · 3.03 KB
/
blogs.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
<!DOCTYPE html>
<html>
<head>
<title>Blogs</title>
</head>
<link rel="stylesheet" type="text/css" href="style/css/blogs.css">
<link rel="stylesheet" type="text/css" href="bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css" integrity="sha384-UHRtZLI+pbxtHCWp1t77Bi1L4ZtiqrqD80Kn4Z8NTSRyMA2Fd33n5dQ8lWUE00s/" crossorigin="anonymous">
<link href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css" rel="stylesheet"/>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" rel="stylesheet"/>
<script type="text/javascript" src="bootstrap/js/bootstrap.min.js"></script>
<script type="text/javascript" src="style/js/jquery.js"></script>
<body>
<!-- header section -->
<div class="header fixed-top">
<div class="container">
<a href="index.html"><i class="fas fa-home"></i></a>
</div>
</div>
<!-- blogs -->
<div class="blogs text-center">
<div class="container">
<div class="section-title center">
<h2>Blogs</h2>
<hr>
</div>
<div class="row">
<div class="col-md-6 col-sm-12 blog">
<a href="https://github.com/rpotter12/rpotter12.github.io/blob/master/blogs/blog1-GCI2018-13-12-2018.md">
<div class="blogging">
<p><h3>Google Code-in 2018</h3></p>
<p>(Publish date: 14 December 2018)</p>
</div>
</a>
</div>
<div class="col-md-6 col-sm-12 blog">
<a href="https://github.com/rpotter12/rpotter12.github.io/blob/master/blogs/blog2-startgithub-22-06-2019.md">
<div class="blogging">
<p><h3>How to start working on others project on GitHub</h3></p>
<p>(Publish date: 22 June 2019)</p>
</div>
</a>
</div>
<div class="col-md-6 col-sm-12 blog">
<a href="https://github.com/rpotter12/rpotter12.github.io/blob/master/blogs/blog3-tracking-26-07-2019.md">
<div class="blogging">
<p><h3>Tracking online WhatsApp status</h3></p>
<p>(Publish date: 26 July 2019)</p>
</div>
</a>
</div>
</div>
</div>
</div>
<!-- footer section -->
<div class="footer">
<div class="container text-center">
<a href="https://github.com/rpotter12"><i class="fab fa-github"></i></a>
<a href="https://www.facebook.com/rohit.potter.10"><i class="fab fa-facebook"></i></a>
<a href="https://twitter.com/rpotter121998"><i class="fab fa-twitter"></i></a>
<a href="https://www.linkedin.com/in/rohit-potter-216473150/"><i class="fab fa-linkedin"></i></a>
<a href="rohitpotter12@gmail.com"><i class="fas fa-envelope"></i></a>
<a href="https://stackoverflow.com/users/9380990/rohit-potter?tab=profile"><i class="fab fa-stack-overflow"></i></a>
<a href="https://www.instagram.com/rohitpotter_12/"><i class="fab fa-instagram"></i></a>
<a href="https://www.hackerrank.com/rohitpotter12"><i class="fab fa-hackerrank"></i></a>
</div>
</div>
</body>
</html>