-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcustomtemplate.html
More file actions
59 lines (56 loc) · 2.35 KB
/
customtemplate.html
File metadata and controls
59 lines (56 loc) · 2.35 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- SITE ICON -->
<link rel="icon" href="./images/logo/Gallery-icon.png" type="image/x-icon">
<!-- CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="customtemplate.css">
<!-- JS -->
<script src="https://code.jquery.com/jquery-3.6.0.js" integrity="sha256-H+K7U5CnXl1h5ywQfKtSj8PCmoN9aaq30gDh27Xc0jk=" crossorigin="anonymous"></script>
<script src="customtemplate.js"></script>
<title>Frames</title>
</head>
<body>
<!-- Header -->
<div class="container-fluid header">
<!-- Logo -->
<div class="row">
<div class="col-md-9" id="logo">
<h5>Frames</h5>
</div>
<!-- Menu -->
<div class="col-md-3 menu">
<ul id="menu">
<li>About</li>
<li>Login</li>
<li>Signup</li>
</ul>
</div>
</div>
</div>
<p id="heading">Custom Template</p>
<div class="container-fluid body-container">
<div class="row">
<div class="col-md-7 parent">
<p id="paragraph">Fill this form and one of our designers will contact you</p>
<form action="#">
<div class="form-group">
<input type="text" name="Name" id="name" class="form-control" placeholder="Full Name">
</div>
<div class="form-group">
<input type="text" name="Phone" id="phone" class="form-control" placeholder="Phone Number">
</div>
<button class="btn btn-form">Submit</button>
</form>
</div>
<div class="col-md-5">
<img src="images/custom-template.png" alt="Frame">
</div>
</div>
</div>
</body>
</html>