forked from breatheco-de/exercise-collaborative-html-website
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
23 lines (23 loc) · 1.15 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
<!DOCTYPE html>
<html>
<head>
<title>Choose a website</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
</head>
<body>
<div class="container">
<h1 class="mb-5">What website are you going to be building?</h1>
<div class="row">
<div class="col-sm-2 bg-dark text-center">
<a href="./website1/designs/thumb.jpg"><img style="max-height: 100px;" class="img-responsive" src="website1/designs/thumb.jpg"></img></a>
</div>
<div class="col-sm-10">
<h2>One Page Wonder - Start Bootstrap Template</h2>
<a class="btn btn-primary" href="./website1/">See it live</a>
<a class="btn btn-warning" href="./website1/designs/thumb.jpg">See how it should look</a>
<a class="btn btn-danger" href="./website1/designs/guide.jpg">See the guide</a>
</div>
</div>
</div>
</body>
</html>