-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathwritings.html
38 lines (38 loc) · 1.17 KB
/
writings.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link
rel="stylesheet"
href="https://use.fontawesome.com/releases/v5.4.1/css/all.css"
integrity="sha384-5sAR7xN1Nv6T6+dT2mhtzEpVJvfS3NScPQTrOxhwjIuvcA67KV2R5Jz6kr4abQsz"
crossorigin="anonymous"
/>
<link rel="stylesheet" href="style.css" />
<title>Writings - Suraj Parmar</title>
</head>
<body>
<nav class="navigation">
<div class="nav-links">
<a href="index.html">About</a>
<a href="#writings">Writings</a>
<a
href="https://drive.google.com/file/d/1f8oKQhlB1KE5AiOP43beUiShuKVjmUMo/view?usp=sharing "
target="_blank"
>Resume</a
>
</div>
</nav>
<div class="content">
<h1>Writings</h1>
<div class="writings-list">
<!-- Add your writing links here -->
<a href="https://parmarsuraj99.medium.com/" class="writing-link">
<i class="fab fa-medium"></i> Check out my Medium blog
</a>
</div>
</div>
</body>
</html>