-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
64 lines (64 loc) · 2.68 KB
/
blog.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>CSS Blog</title>
<link
href="https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700"
rel="stylesheet"
/>
<link rel="stylesheet" href="blog.css" />
</head>
<body>
<div class="post">
<div class="date">January 12 2019</div>
<h2>This is my first article</h2>
<p class="quote">
Drumstick pork loin ribeye, ball tip salami shankle kevin. Flank cupim
andouille turkey ground round. Doner turkey chislic ribeye. Drumstick
shoulder jowl beef shankle shank.
</p>
<p>
Bacon ipsum dolor amet chislic swine andouille, shank filet mignon
shoulder burgdoggen ground round pork chop sirloin tri-tip pastrami ham
biltong pig. Chicken pastrami kielbasa ham hock. Biltong flank brisket
landjaeger buffalo, bresaola alcatra. Tail corned beef short ribs
chicken leberkas pastrami. Ground round corned beef pork loin buffalo
turducken tail andouille, shoulder alcatra pork chuck.
</p>
<p>
Beef buffalo doner rump flank frankfurter ham hock pancetta shank. Pork
loin capicola turkey sirloin tenderloin porchetta ball tip pork meatball
corned beef. Ground round leberkas meatloaf flank. Beef ribs landjaeger
tongue, boudin pork belly cow jerky porchetta picanha chislic shank
biltong.
</p>
<hr />
</div>
<div class="post">
<div class="date">May 15 2020</div>
<h2>This is another article</h2>
<p class="quote">
Drumstick pork loin ribeye, ball tip salami shankle kevin. Flank cupim
andouille turkey ground round. Doner turkey chislic ribeye. Drumstick
shoulder jowl beef shankle shank.
</p>
<p>
Bacon ipsum dolor amet chislic swine andouille, shank filet mignon
shoulder burgdoggen ground round pork chop sirloin tri-tip pastrami ham
biltong pig. Chicken pastrami kielbasa ham hock. Biltong flank brisket
landjaeger buffalo, bresaola alcatra. Tail corned beef short ribs
chicken leberkas pastrami. Ground round corned beef pork loin buffalo
turducken tail andouille, shoulder alcatra pork chuck.
</p>
<p>
Beef buffalo doner rump flank frankfurter ham hock pancetta shank. Pork
loin capicola turkey sirloin tenderloin porchetta ball tip pork meatball
corned beef. Ground round leberkas meatloaf flank. Beef ribs landjaeger
tongue, boudin pork belly cow jerky porchetta picanha chislic shank
biltong.
</p>
</div>
</body>
</html>