forked from dhruv1345/Myblogwebsite
-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
102 lines (100 loc) · 4.03 KB
/
index.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
95
96
97
98
99
100
101
102
<!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 Gallery</title>
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png" />
<link rel="manifest" href="/site.webmanifest" />
<!-- <style>
@import url('https://fonts.googleapis.com/css2?family=Pacifico&family=Roboto&family=Source+Sans+Pro:wght@300&display=swap');
</style> -->
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="wrapper">
<div class="container">
<h1>Articles - by Code-Charm</h1>
<div class="gallery">
<figure class="card">
<a
href="https://medium.com/@guptadhruv1345/how-to-grab-opportunities-using-cold-messaging-emailing-3b0d29ee1cdf"
target="_blank"
><img src="assets/image1.jpg" alt=""
/></a>
<figcaption>Cold Emailing</figcaption>
</figure>
<figure class="card">
<a
href="https://medium.com/@guptadhruv1345/how-to-identify-our-niche-93e08170c7d3"
target="_blank"
><img src="assets/nichee.jpg" alt=""
/></a>
<figcaption>How to identifiy Niche ?</figcaption>
</figure>
<figure class="card">
<a
href="https://medium.com/@guptadhruv1345/entrepreneurship-field-of-study-a28abc488cf0"
target="_blank"
><img src="assets/enter.jpg" alt=""
/></a>
<figcaption>Entrepreneurship</figcaption>
</figure>
<figure class="card">
<a
href="https://medium.com/@guptadhruv1345/how-to-live-a-happy-and-long-life-a-japanese-secrete-26ce97008a77"
target="_blank"
><img src="assets/japan.jpg" alt=""
/></a>
<figcaption>
Japanese Screte to live a long and happy life
</figcaption>
</figure>
<figure class="card">
<a
href="https://medium.com/@guptadhruv1345/how-to-use-linkedin-effectively-c47e6377c4c9"
target="_blank"
><img src="assets/linkedin.jpg" alt=""
/></a>
<figcaption>How to get started with LinkedIn ?</figcaption>
</figure>
<figure class="card">
<a
href="https://www.linkedin.com/pulse/how-manage-time-college-fresher-dhruv-gupta/?trackingId=4AK5vxXsRh2R1fvPQ%2BuueQ%3D%3D"
target="_blank"
><img src="assets/time.jpg" alt=""
/></a>
<figcaption>Time Management tricks and tips</figcaption>
</figure>
<figure class="card">
<a
href="https://www.linkedin.com/pulse/how-begin-journey-code-dhruv-gupta/?trackingId=iAeQyc%2BtRxq0Uez1GpVyLA%3D%3D"
target="_blank"
><img src="assets/howto.png" alt=""
/></a>
<figcaption>How to Start your Programming Journey ?</figcaption>
</figure>
<figure class="card">
<a
href="https://www.linkedin.com/pulse/google-pay-rewritten-flutter-dhruv-gupta/?trackingId=0XCyBDVcQkWpdzaad0jo%2FQ%3D%3D"
target="_blank"
><img src="assets/google.jpg" alt=""
/></a>
<figcaption>Rewritten Google Pay in Flutter</figcaption>
</figure>
<figure class="card">
<a
href="https://medium.com/@guptadhruv1345/getting-internships-became-a-cake-walk-4de298a8361b"
target="_blank"
><img src="assets/comm.jpg" alt=""
/></a>
<figcaption>How to Find Internships ?</figcaption>
</figure>
</div>
</div>
</div>
</body>
</html>