-
Notifications
You must be signed in to change notification settings - Fork 0
/
blogs.html
94 lines (73 loc) · 2.91 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<!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">
<title>Projects</title>
<link href="style.css" rel=stylesheet />
</head>
<body>
<nav class="navigation">
<div class="nav-brand"><bold>Aman1440</bold></div>
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline">
<a class="link" href="/portfolio/index.html">Home</a>
</li>
<li class="list-item-inline">
<a class="link" href="/portfolio/projects.html">Projects</a>
</li>
<li class="list-item-inline">
<a class="link link-active" href="/">blogs</a>
</li>
</ul>
</nav>
<header class="hero">
<h1 class="hero-heading">Know Me More by<br>
<span class="">My Blogs</span>
</h1>
</header>
<section class="section">
<div class="container-center blog">
<h1>
Digital World of Cyber Security
</h1>
<h6 class="blog">Dec 2019</h6>
<p>People nowadays are very much reliant on systems and software applications for their growth. Attacks on these systems/applications can cause serious damage in many aspects.
A strong focus on cybersecurity is necessary to protect ourselves from such damages.</p>
<a class="link-primary link blog"
href="https://medium.com/fnplus/digital-world-of-cyber-security-1463522e475d">Read More</a>
</div>
</section>
<section class="section">
<div class="container-center blog">
<h1>
All About Security
</h1>
<h6 class="blog">Nov 2020</h6>
<p>I would like to start by a famous quote- “Change is the Rule of Living”
Security has always been a major concern for everyone either its a person who has a billion dollar company or someone who just has a note of 20 with him.
The way of securing our belongings kept changing from time to time…</p>
<a class="link-primary link blog"
href="https://aman1440.medium.com/all-about-security-aab5917bc4b5">Read More</a>
</div>
</section>
<footer class="footer">
<div class="footer-header">Know me more at-</div>
<ul class="social-links list-non-bullet">
<li class="list-item-inline">
<a class="link" href="https://github.com/Aman1440">
Github</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://twitter.com/amansingh_here">
Twitter</a>
</li>
<li class="list-item-inline">
<a class="link" href="https://linkedin.com/in/aman1440">
Linkedin</a>
</li>
</ul>
</footer>
</body>
</html>