-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
106 lines (93 loc) · 4.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="description" content="A Web Assingment On Html & Css">
<meta name="keywords" content="Html, CSS, JavaScript, PHP">
<meta name="author" content="Sajib Adhikary">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Sajib Adhikary</title>
<link rel="shortcut icon" href="img/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="css/all.min.css">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- Header Section Start -->
<div class="wrapper-full header-full">
<div class="wrapper header">
<p>
<i class="fas fa-envelope"></i>
<span>
Mail us : [email protected]
</span>
</p>
<ul>
<!-- github -->
<li>
<a href="">
<i class="fab fa-github-square"></i>
</a>
</li>
<!-- Facebook -->
<li>
<a href="https://www.facebook.com/sajib.adhikery.5">
<i class="fab fa-facebook-square"></i>
</a>
</li>
<!-- youtube -->
<li>
<a href="">
<i class="fab fa-youtube-square"></i>
</a>
</li>
<!-- Linkedin -->
<li>
<a href="">
<i class="fab fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</div>
<!-- Header Section End -->
<!-- Navbar Section Start -->
<div class="wrapper-full navbar-full">
<div class="wrapper navbar">
<ul>
<li>
<a href="#">Home</a>
</li>
<li>
<a href="#">About</a>
</li>
<li>
<a href="#">Contact</a>
</li>
</ul>
</div>
</div>
<!-- Navbar Section End -->
<!-- Banner Section Start -->
<div class="wrapper-full banner-full">
<div class="wrapper banner">
</div>
</div>
<!-- Banner Section End -->
<!-- Content Section Start -->
<div class="wrapper-full content-full">
<div class="wrapper content">
<h2>Dummy Content</h2>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>
<p>There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making this the first true generator on the Internet. It uses a dictionary of over 200 Latin words, combined with a handful of model sentence structures, to generate Lorem Ipsum which looks reasonable. The generated Lorem Ipsum is therefore always free from repetition, injected humour, or non-characteristic words etc.</p>
</div>
</div>
<!-- Content Section End -->
<!-- Footer Section Start -->
<div class="wrapper-full footer-full">
<div class="wrapper footer">
<p>Copyright © Sajib Adhikary</p>
</div>
</div>
<!-- Footer Section End -->
</body>
</html>