-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
158 lines (147 loc) · 6.96 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Sadi Captures</title>
<meta name = "viewport" content = "width=device-width, intial-scale=1.0">
<link rel="stylesheet" href="main.css">
<meta name="keywords" content="photographer , photographic , website, personal"><!-- IMP for SEO-->
<meta name="description" content="I have create this website with all the tag i was thought"><!-- A little decs-->
<meta name="author" content="Obivously Me ">
<script src="https://kit.fontawesome.com/dbed6b6114.js"></script>
</head>
<body>
<!-- header -->
<header class = "header">
<div class = "nav-section">
<div class = "brand-and-navBtn">
<span class = "brand-name">
SADI CAPTURES
</span>
<span class = "navBtn flex">
<i class = "fas fa-bars"></i>
</span>
</div>
<!-- navigation menu -->
<nav class = "top-nav">
<ul>
<li><a href = "index.html" class = "active">Home</a></li>
<li><a href = "gallery.html">Gallery</a></li>
<li><a href = "blog.html">Blog</a></li>
<li><a href = "contact.html">Contact</a></li>
</ul>
</nav>
</div>
<div class = "container about">
<div class = "about-content">
<div class = "about-img flex">
<img src = "images/about-img.jpeg" alt = "photographer img">
</div>
<h2>I'm Sadiq Sonalkar</h2>
<h3>Photographer | Developer | Foodie</h3>
<blockquote>
"Photography is a way of feeling, of touching, of loving. What you have caught on film is captured forever ... It remembers little things, long after you have forgotten everything."
<span>-Aaron Siskind</span>
</blockquote>
</div>
<div class = "social-icons">
<ul>
<li>
<a href = "https://m.facebook.com/sadiq.sonalkar.1" target="_blank"><i class = "fab fa-facebook" ></i></a>
</li>
<li>
<a href = "https://twitter.com/SadiqSonalkar" target="_blank"><i class = "fab fa-twitter"></i></a>
</li>
<li>
<a href = "https://www.instagram.com/sadi.captures/" target="_blank"><i class = "fab fa-instagram"></i></a>
</li>
<li>
<a href = "https://unsplash.com/@sadiqs" target="_blank"><i class = "fab fa-unsplash"></i></a>
</li>
</ul>
</div>
</div>
</header>
<!-- end of header -->
<!-- main -->
<section class = "section-one">
<div class = "container">
<div class = "sec-one-left">
<!-- image here -->
<div>
<h3>A quote by Don McCullin</h3>
<p>“ Photography for me is not looking, it’s feeling. If you can’t feel what you’re looking at, then you’re never going to get others to feel anything when they look at your pictures.”</p>
<a href = "#" class = "btn">view all</a>
</div>
</div>
<div class = "sec-one-right">
<div class = "work-content">
<h3>A NOOBIE PHOTOGRAPHER WITH A SPARK IN MY EYES</h3>
<p>Photography is the art, application, and practice of creating durable images by recording light, either electronically by means of an image sensor, or chemically by means of a light-sensitive material such as photographic film</p>
<a href = "#" class = "btn">view all</a>
</div>
<div class = "work-imgs">
<div class = "work-img-1">
<!--image here-->
</div>
<div class = "work-img-2">
<!-- image here -->
</div>
</div>
<h3>"Taking an image, freezing a moment, reveals how rich reality truly is."</h3>
</div>
</div>
</section>
<section class = "section-two">
<div class = "container">
<h2>Follow me on Instagram & Unsplash to see through my eyes!</h2>
<span>@sadi.captures | @sadiqs</span>
<div class = "insta-imgs">
<div>
<img src = "images/insta-1.jpg">
<div class = "icon-overlay flex">
</div>
</div>
<div>
<img src = "images/insta-2.jpg">
<div class = "icon-overlay flex">
</div>
</div>
<div>
<img src = "images/insta-3.jpg">
<div class = "icon-overlay flex">
</div>
</div>
<div>
<img src = "images/insta-4.jpg">
<div class = "icon-overlay flex">
</div>
</div>
</div>
</div>
</section>
<!-- end of main -->
<!-- footer -->
<footer class = "footer">
<div class = "footer-container container">
<div>
<h2>SADIQ SONALKAR</h2>
<p>Graduated in Computer Science from Mumbai University having hand-ons experience in Android application development using JAVA and website development using HTML, CSS, JavaScript. I'm interested in Photography. I do mobile Photography. I have a certificate in Photography. </p>
</div>
<div>
<h3>Free Subscription!</h3>
<p>Please follow me and do subscribe its free.</p>
<div class = "subs">
<i class = "fas fa-envelope"></i>
<input type = "email" id = "email" placeholder="Email Address">
<button type = "submit">SUBSCRIBE</button>
</div>
</div>
</div>
<p>© Copyright Sadi.Captures</p>
</footer>
<!-- end of footer -->
<script src="script.js"></script>
</body>
</html>