forked from DavidAlexSiler/mod3-project-frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (37 loc) · 1.71 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
44
45
46
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Document</title>
<!-- stylesheets && css -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.4.0/css/bootstrap.min.css">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/js/bootstrap.bundle.min.js"></script>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.0.10/css/all.css" integrity="sha384-+d0P83n9kaQMCwj8F4RJB66tzIwOKmrdb46+porD/OvrJ+37WqIM7UoBtwHO6Nlg" crossorigin="anonymous">
<link rel="stylesheet" href="./assets/app.css">
<!-- end of stylesheets && css -->
</head>
<body>
<main>
<section id="title">
<h1>The <s>Official</s> New Yorker Caption Contest! </h1>
<p>When you find a picture that inspires you, click Let's Get Started!</p>
</section>
<section id="show_me">
<img class="current_pic" src="" alt="random_image" data-id="">
<br>
</section>
<section id="btn_holder">
<button class="btn btn-primary" id="next-pic">Choose Another <i class="fa fa-recycle" aria-hidden="true"></i></button>
<button class="btn btn-success" id="get-started">Let's Get Started <i class="fa fa-play" aria-hidden="true"></i></button>
</section>
</section>
<section id="comment"></section>
<!-- <footer>
<p>Final Project : @Chris, @Alex && @Nerando...... <i class="fas fa-coffee"> test</i>#mod3 </p>
</footer> -->
</main>
<script src="./assets/index.js"></script>
</body>
</html>