-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
124 lines (92 loc) · 3.83 KB
/
contact.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
<!Doctype html>
<html>
<head>
<title>ms | home</title>
<link rel="stylesheet" href="css/bootstrap.css">
<link rel="stylesheet" href="cstyle.css">
<script src="js/jquery.js"></script>
<script src="js/bootstrap.js"></script>
<style>
.navbar {
background-image: url(img/header3.jpg);
}
.nav li {
}
.nav li a{
color:white;
display:inline-block;
text-decoration: none;
padding:10px;
font-size: 120%;
}
.nav li a:hover{
background-color: orange;
}
.nav-control a:hover{
font-size: 120%;
background-color: black;
}
</style>
</head>
<!-- <body style="background-image: url(img/text.svg);"> -->
<body>
<nav class="navbar navbar-custom">
<div class="container-fluid">
<div class="navbar-header">
<a href="#" class="navbar-brand"><img src="img/logo.png" width=160px height=60x style="z-index: 5"></a>
</div>
<div>
<ul class="nav navbar-right">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
</nav>
<header style="background: url(img/header3.jpg); height:250px; width: 100%">
<div style="opacity:0.5; padding:50px; margin:0px 100px 0px 100px; text-align: center;" class="jumbotron" >
<h2>Midnight Scribblings</h2>
<h5>when thoughts flow down the pen</h5>
</div>
</header>
<div id="contact" style="background-image: url(img/contact.jpg); height:50vw">
<div id="text-about" class="offset-md-1 col-md-4" style="padding: 30px; background-color: rgba(30,30,30,0.5); background-blend-mode: screen; border-radius: 24px;">
<h1>CONTACT</h1>
<br>
<p style="font-size: 24px">Feel free to comment and share your views. What I have shared is my perception and it is bound to vary with yours. Film is a language, a sciene, an art form in its own, and a person alone cannot comprehend it.</p>
<br>
<p style="font-size: 24px">With love,<br>Soumya Ranjan</p>
</div>
<div id="#newdiv" class="contact-form offset-md-7 col-md-4">
<form id="contact-form" method="post" action="contact-form-handler.php">
<br>
<h3 style="font-size: 36px;color: white; font-family: 'Dosis', sans-serif;">Leave a note!</h3><br>
<input name="name" type = "text" class="form-control" placeholder="Name" required><br>
<input name="email" type = "email" class="form-control" placeholder="E-mail" required><br>
<textarea name="message" class="form-control" placeholder="Write your note here." row="4"></textarea><br>
<input type="submit" name="submit" class="form-control submit" value="SHARE"><br>
</form>
</div>
</div>
<div id="footer" style="background-color: #1e1e1e; text-align: center; font-size: 24px;letter-spacing: 10px;">
<p><br><span id="icons">
<a href="https://www.facebook.com/soumya.ranjan.73997" target="_blank"><i class="fa fa-facebook fa-inverse" aria-hidden="true"></i></a>
<a href="https://www.instagram.com/dishehara_pathik/" target="_blank"><i class="fa fa-instagram fa-inverse" aria-hidden="true"></i></a>
<a href="https://www.behance.net/postboxno76c9d" target="_blank"><i class="fa fa-behance fa-inverse" aria-hidden="true"></i></a>
<a href="https://midnightscribblings.000webhostapp.com/" target="_blank"><i class="fa fa-pencil fa-inverse" aria-hidden="true"></i></a>
</span></p>
<br>
</div>
<div class="container-fluid" style="background-color: black; opacity:.85;">
<br>
<ul class="nav">
<li><a href="#">Home</a></li>
<li><a href="#">Technology</a></li>
<li><a href="#">Enternainment</a></li>
<li><a href="#">Design</a></li>
</ul>
<br>
</div>
</body>
</html>