-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (66 loc) · 2.15 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
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" >
<style></style>
<script></script>
</head>
<body>
<div class="top-bar">
<div class="logo">Logo</div>
<div class="menu">
<ul>
<li><a href="#home">Home</a></li>
<li><a href="#content">Services</a></li>
<li><a href="#content">Portfolio</a></li>
<li><a href="#content">About</a></li>
<li><a href="#contact">Contact</a></li>
</ul>
</div>
</div>
<div id="home" class="banner">
<div class="banner-text">
<div class="banner-text-items">
<h2>Banner Text Heading</h2>
<p>
Lorem ipsum is placeholder text commonly used in the graphic, print,
and publishing industries for previewing layouts and visual mockups.
</p>
</div>
</div>
</div>
<div id="content" class="main-content">
<div class="main1">
<h2>Main Heading One</h2>
<p>
Lorem ipsum is placeholder text commonly used in the graphic, print,
and publishing industries for previewing layouts and visual mockups.
</p>
</div>
<div class="main1">
<h2>Main Heading Two</h2>
<p>
Lorem ipsum is placeholder text commonly used in the graphic, print,
and publishing industries for previewing layouts and visual mockups.
</p>
</div>
<div class="main1">
<h2>Main Heading Three</h2>
<p>
Lorem ipsum is placeholder text commonly used in the graphic, print,
and publishing industries for previewing layouts and visual mockups.
</p>
</div>
</div>
<div id="contact" class="contact">
<div class="contact-text">
<div class="contact-items">
<h2>Contact Us</h2>
<input type="text" placeholder="Your Name...">
<input type="text" placeholder="Your Email...">
<textarea cols="30" rows="10" placeholder="Your Message Here..."></textarea>
<a href="#">Submit</a>
</div>
</div>
</div>
</body>
</html>