-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
73 lines (73 loc) · 2.74 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
<!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>Mimo Blogs</title>
<link rel="stylesheet" href="mimo.css">
<link rel="icon" href="Lg00.png">
</head>
<body>
<!--Header-->
<div id="header">
<div class="container">
<a id="header-title" href="#">Mimo Blogs</a>
<ul id="header-nav">
<li><a href="about.html">About</a></li>
<li><a href="mailto:deepakpadhi90058@gmail.com">Contact</a></li>
</ul>
</div>
</div>
<!--Content-->
<div id="content">
<div class="post-container">
<div class="post">
<div class="post-author">
<img src="user.png" alt="user.png">
<span>Me</span>
</div>
<p class="post-date">Today</p>
<h3 class="post-tittle">Becoming a Web Developer</h3>
<div class="post-content">
<p>If somebody would have told me a week ago that i would be able to make a <b>website</b>, I would not believed them.</p>
<p>Just a few days later, I came across <a href="https://getmimo.com">Mimo</a> and started to work on <em>real</em> blog.</p>
</div>
</div>
</div>
</div>
<div id="content">
<div class="post-container">
<div class="post">
<div class="post-author">
<img src="user.png" alt="user.png">
<span>Me 2 Me</span>
</div>
<p class="post-date">Today</p>
<h3 class="post-tittle">Becoming a Web Developer</h3>
<div class="post-content">
<p>If somebody would have told me a week ago that i would be able to make a <b>website</b>, I would not believed them.</p>
<p>Just a few days later, I came across <a href="https://getmimo.com">Mimo</a> and started to work on <em>real</em> blog.</p>
</div>
</div>
</div>
</div>
<!--Footer-->
<div id="footer">
<div class="container">
<div class="column">
<h4>My links</h4>
<p>
<a href="#">Facebook</a>
<br>
<a href="#">Instagram</a>
</p>
</div>
<div class="column">
<h4>My Story</h4>
<p>Hi there! I'm an aspiring web developer.</p>
</div>
</div>
</div>
</body>
</html>