forked from nss-evening-cohort-12/pants-chinos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
present.html
26 lines (26 loc) · 1.37 KB
/
present.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<link rel="stylesheet" href="main.css">
<title>Celebrities</title>
</head>
<body>
<header></header>
<div id="mainContainer" class="homePageMain">
<div id="presentPageHeader" class="present-page-header">Celebrities in Chinos</div>
<div id="presentText" class="present-page-text">It is an era of Chino Pants. Wearing jeans is not enough anymore. Wearing Chino Pants in every color, that's a new trend for this decade. From musicians to politicians, Chinos are a statement of the American celebrity culture.</div>
<div class="btn-group">
<button type="button" class="btn btn-dark" id="Athlete">Athletes</button>
<button type="button" class="btn btn-dark" id="Actor">Actors</button>
<button type="button" class="btn btn-dark" id="Politician">Politicians</button>
<button type="button" class="btn btn-dark" id="other">Others</button>
</div>
<div id="presentDiv" class="d-flex justify-content-center row"></div>
</div>
<footer></footer>
<script src="main.js"></script>
</body>
</html>