-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
75 lines (66 loc) · 3.59 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Concealed.Visuals Photography Page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="./style.css">
</head>
<body>
<!-- Header -->
<header class="w3-display-container w3-content w3-center" style="max-width:2000px"> Concealed.Visuals
<img class="w3-image" src="https://concealedvisuals.w3spaces.com/ShakibPhotography1.jpg?bypass-cache=10491010" alt="Me" width="1000" height="600">
<div class="w3-display-middle w3-padding-large w3-border w3-wide w3-text-light-grey w3-center">
<h1 class="w3-hide-medium w3-hide-small w3-xxxlarge">Shakib Azad</h1>
<h5 class="w3-hide-large" style="white-space:nowrap">Shakib Azad</h5>
<h3 class="w3-hide-medium w3-hide-small">PHOTOGRAPHER</h3>
</div>
<!-- Navbar (placed at the bottom of the header image) -->
<div class="w3-bar w3-light-grey w3-round w3-display-bottommiddle w3-hide-small" style="bottom:-16px">
<a href="#" class="w3-bar-item w3-button">Home</a>
<a href="#portfolio" class="w3-bar-item w3-button">Portfolio</a>
<a href="#contact" class="w3-bar-item w3-button">Contact</a>
</div>
</header>
<!-- Navbar on small screens -->
<div class="w3-center w3-light-grey w3-padding-16 w3-hide-large w3-hide-medium">
<div class="w3-bar w3-light-grey">
<a href="#" class="w3-bar-item w3-button">Home</a>
<a href="#portfolio" class="w3-bar-item w3-button">Portfolio</a>
<a href="#contact" class="w3-bar-item w3-button">Contact</a>
</div>
</div>
<!-- Page content -->
<div class="w3-content w3-padding-large w3-margin-top" id="portfolio">
<!-- Images (Portfolio) -->
<img src="ShakibPhotography1.jpg" alt="Ocean" class="w3-image" width="1000" height="600">
<img src="ShakibPhotography2.jpg" alt="Ocean II" class="w3-image w3-margin-top" width="1000" height="600">
<img src="ShakibPhotography3.jpg" alt="Falls" class="w3-image w3-margin-top" width="1000" height="600">
<img src="ShakibPhotography4.jpg" alt="Skies" class="w3-image w3-margin-top" width="1000" height="400">
<img src="ShakibPhotography5.jpg" alt="Mountains" class="w3-image w3-margin-top" width="1000" height="800">
<!-- Contact -->
<div class="w3-light-grey w3-padding-large w3-padding-32 w3-margin-top" id="contact">
<h3 class="w3-center">Contact</h3>
<hr>
<p>1 John 1:8 “If we say we have no sin, we deceive ourselves, and the truth is not in us.”
Romans 3:23 “For all have sinned and fall short of the glory of God,”</p>
<form action="/action_page.php" target="www.instagram.com/concealed.visuals">
<div class="w3-section">
<label>Name</label>
<input class="w3-input w3-border" type="text" required name="Name">
</div>
<div class="w3-section">
<label>Email</label>
<input class="w3-input w3-border" type="text" required name="Email">
</div>
<div class="w3-section">
<label>Message</label>
<input class="w3-input w3-border" required name="Message">
</div>
<button type="button" class="w3-button w3-block w3-dark-grey">Send</button>
</form><br>
</div>
<!-- End page content -->
</div>
</body>
</html>