forked from thecomputerfella/shwet-portfolio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patharticles.html
98 lines (82 loc) · 3.69 KB
/
articles.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
<!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="articles_css.css">
<link rel="stylesheet" href="navbar.css">
<title>articles</title>
</head>
<body>
<div id="container">
<nav>
<header>
<div class="logo"></div>
<ul class="nav_links">
<li><a id="active" href="index.html">about me</a></li>
<li><a href="portfolio.html">portfolio</a></li>
<li><a href="articles.html">articles</a></li>
<li><a href="#">contact</a></li>
</ul>
<div class="burger">
<div class="line1"></div>
<div class="line2"></div>
<div class="line3"></div>
</div>
</header>
</nav>
<div id="heading">
<div id=short_head>some words that i wrote, have a read if you got time :) </div>
<div id=big_head>I hope you like them!</div>
</div>
<div id="all_articles">
<div id="article_1">
<div id="article_img"></div>
<div id="article_desc">
<div id="article_name" style="font-size: 1.2em;">college life : a new beginning</div>
<div id="article_by" style="color: #c2c2c2;">by shwet</div>
</div>
</div>
<div id="article_2">
<div id="article_img"></div>
<div id="article_desc">
<div id="article_name" style="font-size: 1.2em;">helpless</div>
<div id="article_by" style="color: #c2c2c2;">by shwet</div>
</div>
</div>
<div id="article_3">
<div id="article_img"></div>
<div id="article_desc">
<div id="article_name" style="font-size: 1.2em;">can a boy and a girl be best friends?</div>
<div id="article_by" style="color: #c2c2c2;">by shwet</div>
</div>
</div>
<div id="article_4">
<div id="article_img"></div>
<div id="article_desc">
<div id="article_name" style="font-size: 1.2em;">mother's voice</div>
<div id="article_by" style="color: #c2c2c2;">by shwet</div>
</div>
</div>
<div id="article_5">
<div id="article_img"></div>
<div id="article_desc">
<div id="article_name" style="font-size: 1.2em;">more such articles coming soon..</div>
<div id="article_by" style="color: #c2c2c2;">by shwet</div>
</div>
</div>
</div>
<div>
<br><br>
<hr color="#eeeeee">
<footer id="footer">
<P id="email"><a href="#">[email protected]</a></P>
<p id="behance"><a target="_blank" href="https://www.be.net/shwetmishra">behance</a></p>
<p id="dribbble"><a target="_blank" href="https://www.dribbble.com/shwetmishra">dribbble</a></p>
<p id="linkedin"><a target="_blank" href="https://www.linkedin.com/in/shwetmishra">linkedin</a></p>
<p id="twitter"><a target="_blank" href="https://www.twitter.com/geekyshwet">twitter</a></p>
<p id="copyright">website design & content © 2019 shwet mishra </p>
</footer>
</body>
</html>