This repository was archived by the owner on Feb 27, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 245
/
Copy pathindex.html
43 lines (40 loc) · 1.64 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>23 - Blog Comments - HTML, CSS and Git Exercises</title>
<link rel="stylesheet" href="/css/normalize.css" />
<link rel="stylesheet" href="/css/week3-forms.css" />
</head>
<body>
<div class="site-wrapper">
<main>
<article>
<h1>Our t-shirts are amazing!</h1>
<p>
Lorem ipsum dolor sit amet, aliquam laoreet quaestio in eum, ea tation dignissim vix. Ei
nec audire vocibus corrumpit. Ut quo facilisis adipiscing, malis sensibus abhorreant vel
ei. Hinc appareat dissentias pri at, impedit propriae ea eos. Modus feugait te duo, sit
noluisse salutatus maiestatis ea. Iisque volumus duo ex, deleniti aliquando quo ne.
</p>
<p>
Eos nibh maiorum voluptatibus ea, an labitur phaedrum sed, vis justo option intellegat
ad. Vel ut ferri dolores. Ad hinc moderatius scriptorem vim, utamur electram ad est, sed
no dicit homero dissentias. Usu qualisque concludaturque id, prodesset concludaturque eu
usu, ea est regione platonem. Et rebum theophrastus per, dicta aliquam adipisci pri cu,
ne quem justo mea.
</p>
</article>
<div class="comments">
<p>Add your comments and let us know what you think!</p>
<form>
<label>Add Your Message</label>
<textarea> comment </textarea>
<button>Send Comment</button>
</form>
</div>
</main>
</div>
</body>
</html>