-
Notifications
You must be signed in to change notification settings - Fork 0
/
blogs.html
75 lines (69 loc) · 3.9 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
72
73
74
75
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="style.css" rel='stylesheet'>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<title>Blogs</title>
</head>
<body>
<nav class="navbar" >
<div class="header">
<br>
<div class="nav-brand name subtitle "> Aman Pandey</div>
<!-- <div class="nav-brand sub subtitle">Mr.YetAnotherCoder</div> -->
<div>
<ul class="non-bullet">
<li class="nav-li-items">
<a href="/" >Home</a>
</li>
<li class="nav-li-items">
<a href="/index.html">About</a>
</li>
<li class="nav-li-items">
<a href="/projects.html">Projects</a>
</li>
<li class="nav-li-items">
<a href="/blogs.html" class="link-active">Blogs</a>
</li>
</ul>
</div>
</div>
</nav>
<section class="section-background">
<br>
<div class="project-card">
<br>
<p class="project-name">Some useful resources for designing your website</p>
<p class="project-stack">16th AUG 2021</p>
<p class="project-description">Hello Devs ! Here are some of my personal favorite website that come handy while designing a website. And by designing I mean - colors, fonts, icons, media, etc. Here are some of the best resources [FREE obviously] that can be used to style up your site and make the site more appealing to the end users...</p><br>
<a target="_blank" href="https://pandeyaman111.hashnode.dev/some-useful-resources-for-designing-your-website" class="project-button-primary">Read More</a><br><br>
<!-- <a target="_blank" href="https://github.com/pandeyaman/stock-profit-loss" class="project-button-secondary">Source Code</a><br> -->
</div>
<div class="project-card">
<br>
<p class="project-name">Working with JavaScript Date() Object</p>
<p class="project-stack">25th AUG 2021</p>
<p class="project-description">Date() object in JS is really helpful when working with date and time in your JS code. Whenever we create a date object in JS, we get a timestamp of the current time calculated from the 1 JAN 1970 UTC time zone....</p><br>
<a target="_blank" href="https://pandeyaman111.hashnode.dev/working-with-javascript-date-object" class="project-button-primary">Read More</a><br><br>
<!-- <a target="_blank" href="https://github.com/pandeyaman/stock-profit-loss" class="project-button-secondary">Source Code</a> -->
</div>
<div class="container container-footer">
<div class="container-footer-center">
<div class="footer-text-div">
<p class="intro footer-text">Are you are Tea person or a Coffee person? <br> Connect with me & let me know.</p>
</div>
<div class="footer-icon">
<a href="mailto:pandey.aman111@gmail.com" class="fa fa-google" target="_blank"></a>
<a href="https://twitter.com/pandeyaman111" class="fa fa-twitter" target="_blank"></a>
<a href="https://www.linkedin.com/in/pandeyaman111/" class="fa fa-linkedin" target="_blank"></a>
<a href="https://github.com/pandeyaman" class="fa fa-github" target="_blank"></a>
<a href="https://telegram.me/pandeyaman111" class="fa fa-telegram" target="_blank"></a>
</div>
</div>
</div>
</section>
</body>
</html>