forked from truecodersio/HTML_Exercise
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
105 lines (96 loc) · 2.54 KB
/
index.html
File metadata and controls
105 lines (96 loc) · 2.54 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!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>HTML Intro</title>
</head>
<body>
<div id="exercise1">
<!-- Complete Exercise 1 HERE -->
<h1>Riddhi Patel</h1>
<p>I am a Web Devloper</p>
</div>
<div id="exercise2">
<!-- Complete Exercise 2 HERE -->
<ul>
<li><a href="https://www.linkedin.com/in/riddhi-patel-a85946a0/">Linkedin Home</a></li>
<li><a href="https://truecoders.io/">Truecoders Home</a></li>
<li><a href="https://www.google.com/">Google</a></li>
</ul>
</div>
<div id="exercise3">
<!-- Complete Exercise 3 HERE -->
<img src="./images/example.png" alt="Workplace">
</div>
<div id="exercise4">
<!-- Complete Exercise 4 HERE -->
<p>
I looked down at the board. "<strong>The Point</strong> isn't to win?" I asked. "<strong>The Point</strong>,"
<span style="color:blue">Bredon</span> said grandly, "is to <u>play</u> a <em>beautiful</em> game." He lifted
his hands and shrugged, his face breaking into a beautific smile. "Why
would I want to win anything other than a <em>beautiful</em> game?"
</p>
</div>
<div id="exercise5">
<!-- Complete Exercise 5 HERE -->
<header>
<nav>
<ul>
<li>
<a href="http://127.0.0.1:5500/">Home</a>
</li>
<li>
<a href="https://www.linkedin.com/in/riddhi-patel-a85946a0/">About</a>
</li>
<li>
<a href="https://github.com/Riddhi7patel">Projects</a>
</li>
</ul>
</nav>
</header>
<main>
<section>
<article>
<h1>Main Heading</h1>
<p>Author.. Bio...</p>
</section>
<section>
<h2>Sub Heading</h2>
<p>Lorem ipsum...</p>
</section>
<section>
<h3>Another Sub Heading</h3>
<p>Lorem ipsum...</p>
</section>
</article>
</main>
<footer>
<nav>
<ul>
<li>
<a href="/privacy">Privacy Policy</a>
</li>
<li>
<a href="/Bio">Bio</a>
</li>
<li>
<a href="/Page">Page</a>
</li>
<li>
<a href="/terms">Terms and Conditions</a>
</li>
<li>
<a href="/Link">Link</a>
</li>
</ul>
</nav>
<div>
<p>Powered by 🕯️</p>
<p>© TrueCoders 2021-24</p>
</div>
</footer>
</div>
</body>
</html>