-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
143 lines (115 loc) · 6.62 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project Writing for Developers</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins:wght@100;200&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined" rel="stylesheet" />
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<header>
<section class="navi">
<a href="#" target="_self">writings.dev</a>
<nav>
<a href="#" target="_self">categories</a>
<a href="#" target="_self">articles</a>
<a href="" target="_self">about</a>
</nav>
<img src="images/imageheader.jpg" alt="A feather in a jar of water">
<h1>Writings for Developers</h1>
<p>Curated collection of articles for busy developers</p>
</section>
</header>
<main>
<section>
<nav id="top">
<a href="#"><span class="material-symbols-outlined">apps</span></a>
<a href="#"><span class="material-symbols-outlined">menu</span></a>
<a href="#">JavaScript</a>
<a href="#">DevOps</a>
<a href="#">Cloud</a>
<a href="#">Terraform</a>
<a href="#">Architecture</a>
<a href="#">Scalability</a>
<a href="#">Explainers</a>
</nav>
<article>
<div class="midcontent">
<img src="images/5709de425cf702f1221e8a649f819070.png" alt="">
<h3>Build continuous integration pipelines with GitHub Actions</h3>
<p>GitHub actions provide a really powerful way to integrate continuous integration and delivery into your applications.</p>
<p class="date"><data value="Jn">June 24, 2022</data> <span>*</span> DevOps</p>
</div>
<div class="midcontent">
<img src="images/17168c652b8637395e58effe720967e1.png" alt="">
<h3>Python for the absolute beginners</h3>
<p>Python is the most popular programming language out there and it is used for so many different industries.</p>
<p class="date"><data value="Jn">June 24, 2022</data> <span>*</span> DevOps</p>
</div>
<div class="midcontent">
<img src="images/175d81087739c4de7be46af6fe4750f3.png" alt="">
<h3>Docker from Zero to Hero</h3>
<p>Learn what is Docker and how Docker is used in the whole software development process</p>
<p class="date"><data value="Jn">June 24, 2022</data> <span>*</span> DevOps</p>
</div>
<div class="midcontent">
<img src="images/gadget.png" alt="">
<h3>Build continuous integration pipelines with GitHub Actions</h3>
<p>GitHub actions provide a really powerful way to integrate continuous integration and delivery into your applications.</p>
<p class="date"><data value="Jn">June 24, 2022</data> <span>*</span> DevOps</p>
</div>
<div class="midcontent">
<img src="images/bridge.png" alt="">
<h3>Build continuous integration pipelines with GitHub Actions</h3>
<p>GitHub actions provide a really powerful way to integrate continuous integration and delivery into your applications.</p>
<p class="date"><data value="Jn">June 24, 2022</data> <span>*</span> DevOps</p>
</div>
<div class="midcontent">
<img src="images/robo.png" alt="">
<h3>Build continuous integration pipelines with GitHub Actions</h3>
<p>GitHub actions provide a really powerful way to integrate continuous integration and delivery into your applications.</p>
<p class="date"><data value="Jn">June 24, 2022</data> <span>*</span> DevOps</p>
</div>
<div class="midcontent">
<img src="images/isle sunset.png" alt="">
<h3>Build continuous integration pipelines with GitHub Actions</h3>
<p>GitHub actions provide a really powerful way to integrate continuous integration and delivery into your applications.</p>
<p class="date"><data value="Jn">June 24, 2022</data> <span>*</span> DevOps</p>
</div>
<div class="midcontent">
<img src="images/sunset.png" alt="">
<h3>Build continuous integration pipelines with GitHub Actions</h3>
<p>GitHub actions provide a really powerful way to integrate continuous integration and delivery into your applications.</p>
<p class="date"><data value="Jn">June 24, 2022</data> <span>*</span> DevOps</p>
</div>
<div class="midcontent">
<img src="images/river.png" alt="">
<h3>Build continuous integration pipelines with GitHub Actions</h3>
<p>GitHub actions provide a really powerful way to integrate continuous integration and delivery into your applications.</p>
<p class="date"><data value="Jn">June 24, 2022</data> <span>*</span> DevOps</p>
</div>
</article>
<nav id="bottom">
<a href="#">Previous</a>
<a href="#">1</a>
<a href="#">2</a>
<a href="#">3</a>
<a href="#">4</a>
<a href="#">5</a>
<a href="#">Next</a>
</nav>
</section>
</main>
<footer>
<section>
<p>writings.dev</p>
<a href="https://twiter.com/kammranahmedse">by @kamranahmedse</a>
<a href="https://twitter.com/filipinhos0" target="_blank" class="right">Follow @filipinhos0</a>
</section>
</footer>
</body>
</html>