-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
82 lines (60 loc) · 2.85 KB
/
index.html
File metadata and controls
82 lines (60 loc) · 2.85 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html>
<head>
<title>HTML StartUp Website</title>
<link href="home_style.css" rel="stylesheet">
</head>
<body>
<div id="container">
<div id = "header">
<h1> HTML StartUP </h1>
</div> <!-- header -->
<div id = "nav">
<ul>
<a href="index.html"><li> Home </li></a>
<a href="about.html"><li> About </li></a>
<a href="services.html"><li> Services </li></a>
<a href="blog.html"><li> Blog </li></a>
<a href="contact_us.html"><li> Contact Us </li></a>
<div style="clear:both"> </div>
</ul>
</div> <!--navigation -->
<div id="middle">
<div id="left">
<div id ="post">
<div class="title"> Welcome to my website </div>
<div class="description"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, <br><a href="#">Continue Reading... </a> </div>
</div> <!-- post -->
<div id ="post">
<div class="title"> Learn HTML </div>
<div class="description"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, <br> <a href=" https://www.lipsum.com/" >Continue Reading... </a> </div>
</div> <!-- post -->
<div id ="post">
<div class="title"> Learn CSS </div>
<div class="description"> Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It has survived not only five centuries, <br> <a href=" https://www.lipsum.com/">Continue Reading... </a> </div>
</div> <!-- post -->
</div> <!-- left -->
<div id="right">
<h2>Latest Posts</h2>
<div id="latest_post_group">
<div class="latest_post">Post 1</div>
<div class="latest_post">Post 2</div>
<div class="latest_post">Post 3</div>
<div class="latest_post">Post 4</div>
<div class="latest_post">Post 5</div>
<div class="latest_post">Post 6</div>
</div>
<div id="news_letter">
<div class="news_letter_head"> Newsletter </div>
<input type="text" placeholder="Enter your Email ID" >
<input type="submit" >
</div> <!-- newsletter -->
</div> <!-- right -->
<div style="clear:both"> </div>
</div> <!-- middle -->
<div id="footer">
Copywrite © 2019
</div> <!-- footer -->
</div> <!--container here-->
</body>
</html>