-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
109 lines (80 loc) · 4.07 KB
/
index.html
File metadata and controls
109 lines (80 loc) · 4.07 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
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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-7" />
<title>Car website project</title>
<!-- link to main stylesheet -->
<link rel="stylesheet" type="text/css" href="/css/main.css">
</head>
<body>
<div class="header">
<h1>car</h1> <!--Website name-->
</div>
<main class="nested"> <!--Main container-->
<div class="flex-container"> <!--The two sub rows of container-->
<div class="tworows"> <!--Row 1-->
<article> <!--First article of row1 -->
<div class="first-article">
<h3>A1.</h3>
<p>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.
</p>
<a href="http://website.com/style.css" target= _blank>
ex.lk
</a>
</div>
</article>
<article>
<!--Second article row1-->
<h3>A2.</h3>
<p>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.</p>
<a href="http://website.com/style.css" target=_blank>
ex.lk
</a>
</article>
<article> <!--Third article/last article of row1-->
<h3>A3.</h3>
<p>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.</p>
<a href="http://website.com/style.css" target=_blank>
ex.lk
</a>
</article>
</div>
<div class="tworows"> <!--Row2-->
<article> <!--First article row2-->
<h3>A1</h3>
<p>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.</p>
<a href="http://website.com/style.css" target=_blank>
ex.lk
</a>
</article>
<article> <!--Second article row2-->
<h3>A2</h3>
<p>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.</p>
<a href="http://website.com/style.css" target=_blank>
ex.lk
</a>
</article>
<article>
<!--Third article/last article of row2-->
<h3>A3</h3>
<p>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.</p>
<a href="http://website.com/style.css" target=_blank>
ex.lk
</a>
</article>
</div>
</div>
<div id="divBackground"> <!--sidebar-->
<article class="sidebar">
<h3 class="side-heading">Title </h3>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. </p>
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.</p>
</article>
</div>
</main>
<footer> <!--footer-->
<p>website source and info </p>
</footer>
</body>
</html>
Date