-
Notifications
You must be signed in to change notification settings - Fork 0
/
blogs.html
92 lines (92 loc) · 4.27 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
<!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>BLOGS|AMAL OUSEPH</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navigation container">
<div class="nav brand">
<a href="https://pantherblack5.netlify.app/" class="link link-active">AmalOuseph</a>
</div>
<ul class="list-non-bullet nav-pills">
<li class="list-item-inline">
<a href="https://pantherblack5.netlify.app/" class="link link-active">HOME</a>
</li>
<li class="list-item-inline">
<a href="project.html" class="link">PROJECTS</a>
</li>
<li class="list-item-inline">
<a href="blogs.html" class="link">BLOGS</a>
</li>
</ul>
</nav>
<header class="hero">
<h1 class="hero-heading">
Interested in my
<span class="heading-inverted">blogs</span>
</h1>
</header>
<ul class="list-non-bullet">
<li>
<article class="showcase-list container container-center ow">
<h1><abbr titel="Command Line Interface">CLI</abbr></h1>
<small>SEP 18, 2021</small>
<p>A command-line-interface (CLI) proccesses commands to a computer program in the form of lines of text.In other words,it accepts user text input to execute operating function.</p>
<a href="/blogR1.html" class="link link-primary" id="read-one">READ</a>
</article>
</li>
<li>
<article class="showcase-list container container-center ow">
<h1>GIT</h1>
<small>SEP 18, 2021</small>
<p>Git is an open source software which is used to track any changes done in the program.It is basically created for the coordination of work between the team with less effort.</p>
<a href="/blogR2.html" class="link link-primary">READ</a>
</article>
</li>
<li>
<article class="showcase-list container container-center ow">
<h1>HTML & CSS</h1>
<small>SEP 18, 2021</small>
<p>HTML is HYPER TEXT MARKUP LANGUAGE which tells that what this file contains via tags, whereas CSS tells how this HTML should look for the viewer.</p>
<a href="/blogR3.html" class="link link-primary">READ</a>
</article>
</li>
<li>
<article class="showcase-list container container-center ow">
<h1>VANILLA JS OR JAVASCRIPT</h1>
<small>SEP 18, 2021</small>
<p>JS is a script language which defines the functionality or control of the HTML file.It is a backend language.</p>
<a href="/blogR4.html" class="link link-primary">READ</a>
</article>
</li>
<li>
<article class="showcase-list container container-center ow">
<h1>REACT</h1>
<small>SEP 18, 2021</small>
<p>ReactJS is a declarative, efficient, and flexible JavaScript library for building reusable UI components. It is an open-source, component-based front end library which is responsible only for the view layer of the application.</p>
<a href="/blogR5.html" class="link link-primary">READ</a>
</article>
</li>
</ul>
<footer class="footer">
<div class="footer-header">
Find ME at
</div>
<ul class="social-links list-non-bullet">
<li class="list-item-inline">
<a href="https://github.com/pantherblack34" target="_blank"><img src="/image/github-modified.png" alt="github"></a>
</li>
<li class="list-item-inline">
<a href="https://twitter.com/AmalOusephspook?s=09" target="_blank"><img src="/image/twitter-modified.png" alt="twitter"></a>
</li>
<li class="list-item-inline">
<a href="https://www.linkedin.com/in/pantherblack-Amal-Ouseph" target="_blank"><img src="/image/linked-modified.png" alt="linkedin"></a>
</li>
</ul>
</footer>
</body>
</html>