-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathservices.html
More file actions
71 lines (49 loc) · 3.32 KB
/
services.html
File metadata and controls
71 lines (49 loc) · 3.32 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
<!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 ="post">
<div class="title"> Frontend learning </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.coursera.org/specializations/web-design ">Reading about course... </a> </div>
</div> <!-- post -->
<div id ="post">
<div class="title"> Course about 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.codecademy.com/learn/learn-html" >Reading about course... </a> </div>
</div> <!-- post -->
<div id ="post">
<div class="title"> Course about 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.codecademy.com/learn/learn-css">Reading about course... </a> </div>
</div> <!-- post -->
<div id ="post">
<div class="title"> Course about JavaScript </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.codecademy.com/learn/introduction-to-javascript">Reading about course... </a> </div>
</div> <!-- post -->
<div id ="post">
<div class="title"> Course about PHP </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.codecademy.com/learn/learn-php">Reading about course... </a> </div>
</div> <!-- post -->
</div> <!-- middle -->
<div id="footer">
Copywrite © 2019
</div> <!-- footer -->
</div> <!--container here-->
</body>
</html>