-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbootcamp.html
More file actions
90 lines (84 loc) · 3.21 KB
/
Copy pathbootcamp.html
File metadata and controls
90 lines (84 loc) · 3.21 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
<!DOCTYPE html>
<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>bootcamp</title>
<link rel="shortcut icon" href="favicon-16x16.png" type="image/png">
</head>
<body>
<div>
<img src="golgers2.jpeg" alt="golfers" width="500px">
</div>
<div>
<table border="1" width="100%">
<tr>
<th colspan="2">
<h3>Welcome to the website</h3>
</th>
</tr>
<tr>
<td width="20%">
<h3>Navigation</h3>
</td>
<td>
<h3>Content</h3>
</td>
</tr>
<tr>
</tr>
</table>
</div>
<style>
.rosemarry{
padding: 40px;
text-transform: uppercase;
color: white;
background-color: black;
}
.marrygold{
padding: 20px;
color: white;
background-color: darkblue;
}
#testingid{
border: 15px solid red;
}
</style>
<div class="rosemarry">
Lorem ipsum dolor sit amet, <code> consectetur adipisicing elit.</code> Tempore voluptatum nam non ab molestias reiciendis praesentium neque? Quibusdam obcaecati sint quia, dolore recusandae, tempore laboriosam harum, minima atque placeat a?
</div>
<div id="testingid">
Lorem ipsum dolor sit amet consectetur, adipisicing elit. Dolore commodi tempora ex quaerat quam omnis repellendus recusandae fugiat, hic quasi adipisci quibusdam nemo tempore magni illum fuga aliquid itaque fugit?
</div>
<div class="marrygold mb-2">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Facere repellendus voluptatibus sit aliquid perferendis exercitationem eveniet illum tempora ipsam pariatur eligendi dolorum, consectetur asperiores aspernatur quae sunt vitae quibusdam? Nesciunt.
</div>
<pre>
Some stuff here
this is cool
</pre>
<div>
<form action="">
<input required type=" email " value="Hello world" placeholder="Enter your name">
<div>
<textarea name="adress" id="" cols="50" rows="20"> Hi hello i am a peaky blinder
get me my mug shot and white horse arse
</textarea>
</div>
<div>
<button type="submit">Click me</button>
</div>
<div>
<select name="selected option" id="">
<option value="first option">this is option 1</option>
<option value="second option">this is option 2</option>
<option value="third option">this is option 3</option>
</select>
</div>
</form>
<iframe width="450" height="315" src="https://www.youtube.com/embed/jh66Pjtqr4k" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
</body>
</html>