-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
51 lines (49 loc) · 1.44 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
<!DOCTYPE html>
<html>
<head>
<link rel="shortcut icon" href="img/favicon.gif"/>
<title>MySite.xyz | Welcome to MySite!</title>
<link rel="stylesheet" type="text/css" href="./css/styles.css" media="screen"/>
</head>
<body>
<h1>Welcome to MySite!</h1>
<br>
<h6>We hope you enjoy your stay!</h6>
<br>
<img src="./img/image1.jpg" alt="image1" width="700" height="475" />
<br>
<a href="https://www.google.com"> Visit google here!</a>
<br>
<form method="POST" id="unknown_host" action="submitted.html">
<fieldset id="fs_contact">
<input type="text" id="name" placeholder="Name" />
<input type="email" id="email" placeholder="[email protected]" />
<textarea id="message" rows="8" cols="30" placeholder="Enter your text here">
</textarea>
<input type="submit" value="Submit!" id="submit" class="submit_btn"/>
</fieldset>
</form>
<br>
<p class="myClassStyle">This is a paragraph.
Pretty cool right??!!
</p>
<br>
<ol>
<li>Did you know?</li>
<li>This is actually...</li>
<li>a list!</li>
</ol>
<br>
<ul>
<li>This is another list!</li>
<li>just with bullet points</li>
<li>instead of numbers</li>
</ul>
<br>
<div id="myIDStyle">
This is a division
</div>
<br>
<iframe width="560" height="315" src="https://www.youtube.com/embed/dQw4w9WgXcQ?controls=0" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</body>
</html>