-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (40 loc) · 1.65 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
47
48
49
50
51
52
53
<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>DOG BREED</title>
<link rel="stylesheet" href="dogs.css">
</head>
<body>
<div class="application">
<div class="header">
<h1>WOOF WOOF ME!</h1>
<div id="breed"></div>
<h6>
<div class="container">
<button id="myBtn"> Woof, what's my time?</button>
<p id="demo"></p>
<div class="column">
<p>Swing by for a cup of coffee, or leave us a message:</p>
<h5>Comments</h5>
<div id='list' class='comments'></div>
<form id="submitExample" action="">
<label for="subject">Woof</label>
</br>
<textarea id="subject" name="subject" placeholder="Write something.." style="height:40px"></textarea>
<input type="submit" value="Submit">
</form>
</div>
</div>
</h6>
<div class="contact">
<button id="myPal"> Reach your woof pal</button>
<p id="call"></p>
</div>
</div>
<div class="slideshow" id="slideshow"></div>
</div>
<script src="main.js"></script>
</body>
</html>