-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
126 lines (117 loc) · 4.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
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
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Manish Blog</title>
<link href="css/bootstrap.css" rel="stylesheet">
<link href="css/bootstrap.css.map" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">
</head>
<body>
<header
class="d-flex flex-column flex-column flex-md-row align-items-center p-3 px-md-4 mb-1 bg-white border-bottom shadow-sm">
<a href="/" class="h5 my-0 me-md-auto fw-normal">Manish Blog</a>
<nav class="my-2 my-md-0 me-md-3">
<a class="p-2 text-dark" href="/profile.html">Profile</a> <!-- class notes-->
<a class="p-2 text-dark" href="/project.html">Projects</a>
<a class="p-2 text-dark" href="/progress.html">Progress</a> <!-- coursewa-->
</nav>
<a class="btn btn-outline-primary" href="https://m.me/manish.lokbidhi">fb Chat</a>
</header>
<div class="masthead text-center text-white purple p-4">
<div class="masthead-content">
<div class="container">
<h1 class="masthead-heading mb-0">Hello there !</h1>
<h2 class="masthead-subheading mb-0">I am Manish Sau</h2>
<a href="https://github.com/manishlok" class="btn btn-primary btn-xl rounded-pill mt-5">My GitHub
Profile</a>
</div>
</div>
</div>
<section>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 order-lg-2">
<div class="p-5">
<img class="img-fluid rounded-circle" src="img/01.png" alt="">
</div>
</div>
<div class="col-lg-6 order-lg-1">
<div class="p-5">
<h2 class="display-4">My profile..</h2>
<p>Know about me here !</p>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6">
<div class="p-5">
<img class="img-fluid rounded-circle" src="img/02.png" alt="">
</div>
</div>
<div class="col-lg-6">
<div class="p-5">
<h2 class="display-4">My Projects</h2>
<p>My Work Projects</p>
</div>
</div>
</div>
</div>
</section>
<section>
<div class="container">
<div class="row align-items-center">
<div class="col-lg-6 order-lg-2">
<div class="p-5">
<img class="img-fluid rounded-circle" src="img/03.png" alt="">
</div>
</div>
<div class="col-lg-6 order-lg-1">
<div class="p-5">
<h2 class="display-4">My Progress Card</h2>
<p>Learning Progress</p>
</div>
</div>
</div>
</div>
</section>
<div class="jumbotron jumbotron-fluid purple">
<div class="container">
<div class="row vertical-align-middle mt-5 mb-5">
<div class="col-md-6">
<h1 class="text-inverse">Hire me for your project..</h1>
</div>
</div>
</div>
</div>
<div class="container mt-5 mb-4">
<div class="row">
<div class="col-md-6">
<p>You can hire me for webApp projects. Just shoot up your email address !</p>
</div>
<div class="col-md-6">
<form>
<div class="form-group right ml-2">
<button type="submit" class="btn btn-primary custom-button">Submit</button>
</div>
<div class="form-group left">
<input type="email" class="form-control" placeholder="[email protected]">
<small id="emailHelp" class="form-text text-muted">I will contact you in your email.</small>
</div>
</form>
</div>
</div>
</div>
<footer class="align-items-center p-3 px-md-4 mt-3 bg-white border-top shadow-sm">
<p class="float-end"><a href="https://schoolofapp.com">School of App</a>||</a><a href="#top">Back to top</a></p>
<p>© 2022 Manish Sau · <a href="/project.html">Project</a> · <a
href="/progress.html">Progress</a></p>
</footer>
</body>
</html>