-
Notifications
You must be signed in to change notification settings - Fork 281
/
Copy pathindex.html
32 lines (31 loc) · 1.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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Testionial Box</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div class="testimonial-container">
<div class="user">
<img
src="https://pbs.twimg.com/profile_images/1196645005378478080/79mVokZP_400x400.jpg"
class="user-avater"
/>
<div class="user-info">
<h4 class="username">Ben Furfie</h4>
<div class="twitter-handle">@frontendben</div>
</div>
</div>
<p class="testimonial">
I've been writing CSS for over 20 years, and up until 2017, the way I
wrote it changed frequently. It's not a coincidence Tailwind was
released the same year. It might look wrong, but spend time with it and
you'll realise semantic CSS was a 20 year mistake.
</p>
<div class="line"></div>
</div>
<script src="app.js"></script>
</body>
</html>