-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
146 lines (126 loc) · 4.89 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="author" content="Dave Gray">
<meta name="description" content="This page contains all the things I am learning how to create as I learn HTML.">
<title>My First Web Page</title>
<link rel="icon" href="assets\html5.png" type="image/x-icon">
<link rel="stylesheet" href="assets\style.css" type="text/css">
</head>
<body>
<header>
<h1>My Goals for the Year</h1>
<hr>
<nav>
<ul>
<li>
<a href="#html">Learning HTML</a>
</li>
<li>
<a href="#vacation">Planning a Vacation</a>
</li>
</ul>
</nav>
</header>
<hr>
<main>
<iframe src="about.html" height="200" width="300" title="Iframe Example">About Me</iframe>
<article id="html">
<button type="button">Press Enter</button>
<h2>I'm Ready to Learn HTML</h2>
<p>This is my first web page.</p>
<section>
<h2>HTML5</h2>
<img src="assets\html.jpg" alt="HTML5 Logo" title="I am learning HTML5">
<figure>
<figcaption>An Example of HTML5 code</figcaption>
<p1>
<code><h1>Hello World!</h1></code>
</p1>
</figure>
</section>
<h3>My Daily Schedule</h3>
<p>Let me tell you how:</p>
<ol>
<li>...I learn more about web dev.</li>
<li>...I plan out my schedule.</li>
<li>...I use resources from <abbr title="Mozilla Developer Network">
<a href="https://developer.mozilla.org/">MDN</a>
</abbr>.</li>
</ol>
</article>
<hr>
<section id="vacation">
<h2>I Am Also Planning a Vacation</h2>
<p>I've been working hard and <em>really need a getaway</em>.</p>
<p>I live in <abbr title="Kansas">KS</abbr> so I want visit a beach.</p>
<h3>Places I'd Like to Visit</h3>
<ul>
<li>
<p>I've heard good things about the Caribbean.</p>
<figure>
<img src="assets\caribbean.jpg" alt="Caribbean Beach" title="I want to visit a Caribbean beach."
width="400" height="267" loading="lazy">
<figcaption>
Caribbean Beach Getaway
</figcaption>
</figure>
</li>
<li>
<p>I've heard good things about going here:</p>
<address>
Margaritaville Island Reserve Riviera Cancún<br>
Bahia Petempich Puerto Morelos, Mexico<br>
Colonia Morelos, México 77580
</address>
<figure>
<img src="assets\vacation.jpg" alt="Cancun Vacation" title="It's 5 o'Clock Somewhere!" width="400"
height="267" loading="lazy">
<figcaption>
A Caribbean Vacation Image
</figcaption>
</figure>
</li>
</ul>
<!-- TODO: Add more places -->
<h3>Places I Want to Avoid</h3>
<dl>
<dt>North Pole</dt>
<dd>I hear this is <strong>cold</strong>!</dd>
<dt>South Pole</dt>
<dd>This is also cold.</dd>
<dt>Mountain Tops</dt>
<dd>These are also cold.</dd>
</dl>
</section>
<p>HTML is the standard markup language for creating Web pages. HTML describes the structure of a Web page. HTML consists of a series of elements. HTML elements tell the browser how to display the content.
HTML elements label pieces of content such as "this is a heading", "this is a paragraph", "this is a link", etc.</p>
<h4>Help me to Choose</h4>
<li>
<label for="name">Enter your name to give suggestions :</label>
<input id="name"type="you can fill your name here">
</li>
<li>
<label for="gmail">Enter your email</label>
<input id="gmail" type="text">
</li>
<li>
<label for="faviourate destination">Enter your faviourate destination</label>
<input id="faviourate destination" type="text">
</li>
<li>
<label for="reason">Reasons to visit your faviourate destination</label>
<input id="reason" type="text">
</li>
<hr>
<button type="button" onclick="document.getElementsById(xyz).innerHTML = Date()">Press to know about you</button>
<h6 id="xyz">you need to know about you in a better way</h6>
</main>
<hr>
<<< © <a href="about.html">Anway Durge</a> >>>
<p>
<a href="#">Back to Top</a>
</p>
</body>
</html>