-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
93 lines (81 loc) · 3.77 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
86
87
88
89
90
91
92
93
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Blog</title>
<!-- Locating stylesheet -->
<link rel="stylesheet" href="styles.css">
<!-- Google font from api -->
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Spartan:400,500,700&lang=en">
<!-- Google font from api -->
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&display=swap" rel="stylesheet">
</head>
<body>
<header>
<nav id="navbar" class="curve-bottom-edge-only">
<div id="brand-name">Devloper appsplash99</div>
<div >
<ul id="nav-menu">
<li><a href="index.html" alt="home-page">Home</a></li>
<li><a href="projects.html" alt="projects-page" >Projects</a></li>
<li><a href="blog.html" alt="blog-page">Blog</a></li>
</ul>
</div>
</nav>
</header>
<!-- 1 Hero -->
<section id="hero">
<img id="hero-img" src="static/hero-blog.svg" alt="hero-blog-img">
<h1 id="web-dev" class="has-border curve-all-edges">BLOGS</h1>
</section>
<!-- Blogs Section -->
<section id="all-skills-container">
<!-- blogpost1 -->
<div class="skill-card curve-all-edges">
<h4>Dummy Blog 1</h4>
<div class="skill-type">
<div class="skill-item">
<img class="project-img" src="static/typewriter.svg" alt="goodbooks-img">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<div class="project-buttons-container ">
<a class="project-button-link curve-all-edges" href="/dummyBlog1.html" target="_blank">Read More</a>
</div>
<br>
</div>
</div>
</div>
<!-- blogpost2 -->
<div class="skill-card curve-all-edges">
<h4>Dummy Blog 2</h4>
<div class="skill-type">
<div class="skill-item">
<img class="project-img" src="static/typewriter.svg" alt="goodbooks-img">
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book.</p>
<div class="project-buttons-container ">
<a class="project-button-link curve-all-edges" href="/dummyBlog2.html" target="_blank">Read More</a>
</div>
<br>
</div>
</div>
</div>
</section>
<!-- 5 Lets Connect -->
<footer id="socials-container" class="curve-top-edge-only">
<!-- Lets Connect -->
<h1>Let's Connect</h1>
<!-- Social Icons -->
<div id="social-links" >
<a href="https://github.com/appsplash99" alt="github" target="blank"><img src="static/github.svg" alt="github-appsplash99"></a>
<a href="https://codesandbox.io/u/appsplash99" alt="email" target="blank"><img src="static/codesandbox.svg" alt="codesandbox"></a>
<a href="https://twitter.com/ApurvChimralwar" alt="twitter" target="blank"><img src="static/twitter.svg" alt="twitter"></a>
<a href="https://hashnode.com/@appsplash99" alt="hashnode" target="blank"><img src="static/hashnode.png" alt="hashnode"></a>
<a href="https://in.linkedin.com/in/ApurvChimralwar" alt="linkedin" target="blank"><img src="static/linkedin.svg" alt="linkedin"></a>
<a href="" alt="email" target="blank"><img src="static/gmail.svg" alt="email"></a>
</div>
<!-- Made By appsplash99 -->
<h3 id="made-by">Made with ❤️ by appsplash99</h3>
</footer>
</body>
</html>