-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
34 lines (34 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Random Ted Lasso Quotes</title>
<!-- normalize css -->
<link rel="stylesheet" href="./css/normalize.css" />
<!-- main css -->
<link rel="stylesheet" href="./css/styles.css" />
</head>
<body>
<section class="section">
<h1 class="section-title">Random Quotes from the Amazing TV Series</h1>
<h1 class="section-title-ted"><span class="ted">Ted Lasso</span></h1>
<article class="section-center">
<img src="" alt="author image" class="author-img" />
<h3 class="result">
Lorem ipsum dolor sit, amet consectetur adipisicing elit. Porro,
explicabo!
</h3>
<h4 class="author">author</h4>
<button class="btn">get new quote</button>
</article>
</section>
<footer class="footer">
<p class="footer-info">Inspired by https://tedlassoquotes.com</p>
<p class="copyright">
This site is not affiliated with the TV series, Ted Lasso
</p>
</footer>
<script src="./app.js"></script>
</body>
</html>