-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
175 lines (139 loc) · 4.07 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
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<!DOCTYPE html>
<html>
<head>
<title>Website Template | Simple Single-Page | Html | Css | Home Page</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div class="box">
<div class="row content">
<div class="content-text">
<h1>This is a single-page html/css website template hosted on github.</h1>
<hr>
<h2>Heading (h2)</h2>
<p>Place your text here, place your text here, place your text here, place your text here,
place your text here, place your text here, place your text here, place your text here,
place your text here, place your text here, place your text here, place your text here,
place your text here, place your text here, place your text here, place your text here,
place your text here, place your text here, place your text here, place your text here,
place your text here, <i>place your text here, </i>place your text here, <i>place your text here.</i></p>
<br />
<h3>Heading (h3)</h3>
<p>Sample medium-sized text.</p>
<br />
<h3>Heading (h3)</h3>
<p>Place your text here.</p>
<br />
<h3>Downloads:</h3>
<p>Files included:</p>
<ul>
<li>test-file-1.txt</li>
<li>test-file-2.txt</li>
<li>test-file-3.txt</li>
<br />
<div class="download-button">
<a href="downloads/website-template-simple-single-page-v1.zip" download style="color:white; text-decoration:none">
<span>Download </span>
<img style="vertical-align:middle" src="images/download-icon-1.png" alt="image" height="25">
</a>
</div>
</ul>
<br />
<hr> <!-- this makes a line -->
<br />
<div class="float-right">
<content-image>
<a href="images/test-image-1.jpg">
<img src="images/test-image-1.jpg" width="300" />
<br /><br />test-image-1 (float-right)</a>
</content-image>
</div>
<p class="content-text-no-line-space">
<a href="images/test-image-1.jpg">
List Link 1. (test-image-1)</a></p>
<p class="content-text-no-line-space">
<a href="images/test-image-2.jpg">
List Link 2. (test-image-2)</a></p>
<p class="content-text-no-line-space">
<a href="images/test-image-3.jpg">
List Link 3. (test-image-3)</a></p>
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<br />
<div>
<content-image>
<a href="images/test-image-2.jpg">
<img src="images/test-image-2.jpg" width="500" />
<br /><br />test-image-2 (text-aligned)</a>
</content-image>
</div>
<div class="center">
<content-image>
<a href="images/test-image-2.jpg">
<img src="images/test-image-2.jpg" width="500" />
<br /><br />test-image-2 (centered)</a>
</content-image>
</div>
<div class="align-right">
<content-image>
<a href="images/test-image-2.jpg">
<img src="images/test-image-2.jpg" width="500" />
<br /><br />test-image-2 (align-right)</a>
</content-image>
</div>
<div class="center">
<content-image-spaced>
<a href="images/test-image-3.jpg">
<img src="images/test-image-3.jpg" width="400" />
<br /><br />test-image-3 (centered grid)</a>
</content-image-spaced>
<content-image-spaced>
<a href="images/test-image-3.jpg">
<img src="images/test-image-3.jpg" width="400" />
<br /><br />test-image-3 (centered grid)</a>
</content-image-spaced>
<content-image-spaced>
<a href="images/test-image-3.jpg">
<img src="images/test-image-3.jpg" width="400" />
<br /><br />test-image-3 (centered grid)</a>
</content-image-spaced>
</div>
</div>
</div>
<div class="row footer">
<div class="footer">
<p>Copyright © your copyright here. No Rights Reserved.</p>
</div>
</div>
</div> <!-- end box -->
</body>
</html>