-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
85 lines (75 loc) · 3.8 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
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
<!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">
<title>Maitreyee's Portfolio</title>
<link rel="icon" type="image/x-icon" href="./assets/initials.ico"/>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
</head>
<body>
<header class="heading">
<h2 class="nav-brand">Maitreyee</h2>
<nav class="navigation">
<ul class="nav-list">
<li class="header-list list-non-bullet display-inline ">
<a href="index.html" class="link link-white">Home
</a>
</li>
<li class="header-list list-non-bullet display-inline "><a href="project.html" class="link link-white">Projects</a>
</li>
<li class="header-list list-non-bullet display-inline ">
<a href="#" class="link link-white active">Blogs
</a>
</li>
</ul>
</nav>
</header>
<div class="main">
<div class="introduction">
<img src="./assets/blog.svg" alt="image of a girl" class="image-portfolio">
<p class="section intro ">
My Blogs
</p>
<div class="section technology colored-section">
<h3>Position Property in CSS<h3>
<br>
<p>
This blog talks about the CSS position property. The various positions like static, relative, absolute, sticky and fixed are explained with the help of examples. I hope you like it.
</p>
<button>
<a href="https://justcodingthings.hashnode.dev/position-property-in-css" class="link" target="__blank">Read More
</a>
</button>
</div>
<div class="section technology ">
<h3>Hoisting and Temporal Dead Zone</h3>
<br>
<p> This blog talks about the basics of var, let and const. It then explains the concept of Hoisting and Temporal Dead Zone. Do have a look!
</p>
<button>
<a href="https://justcodingthings.hashnode.dev/hoisting-and-temporal-dead-zone" class="link" target="__blank">Read More</a>
</button>
</div>
<div class="section technology colored-section">
<h3>"use strict" in JavaScript</h3>
<br>
<p> This blog explains the concept of use strict with the help of examples where using strict mode prevents unexpected bugs.Hope you like it!
</p>
<button>
<a href="https://justcodingthings.hashnode.dev/use-strict-in-javascript" class="link" target="__blank">Read More</a>
</button>
</div>
</div>
<footer class="footer">
<p class="nametext">Connect with me</p>
<ul>
<li class="list-non-bullet display-inline"><a href="https://twitter.com/maitreyee__nath" target="__blank" ><i class="fa fa-twitter"></i></a></li>
<li class="list-non-bullet display-inline"><a href="https://github.com/mnath30" target="__blank"><i class="fa fa-github"></i></a></li>
<li class="list-non-bullet display-inline"><a href="https://www.linkedin.com/in/maitreyee-nath" target="__blank"><i class="fa fa-linkedin"></i></a></li>
</ul>
</footer>
</body>
</html>