-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a61ad73
commit 81145a1
Showing
1 changed file
with
67 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
<html> | ||
<head> | ||
<title>Penguin Hub | Vocabulary 1</title> | ||
<link rel="icon" type="image/x-icon" href="/images/favicon.ico"> | ||
<style> | ||
body { | ||
background-color: #222; | ||
font-family: Arial, sans-serif; | ||
color: #F0F8FF; | ||
} | ||
|
||
#header { | ||
background-color: #333; | ||
padding: 15px; | ||
text-align: center; | ||
} | ||
|
||
#content { | ||
margin-top: 50px; | ||
text-align: center; | ||
} | ||
|
||
.button { | ||
background-color: #555; | ||
color: #fff; | ||
padding: 10px 20px; | ||
text-decoration: none; | ||
border-radius: 5px; | ||
margin: 10px; | ||
display: inline-block; | ||
} | ||
|
||
.button:hover { | ||
background-color: #777; | ||
} | ||
</style> | ||
</head> | ||
<body> | ||
<div id="header"> | ||
<h1>Penguin Learning | Vocabulary 1</h1> | ||
</div> | ||
<div id="content"> | ||
<h2>Your First Vocabulary Words!</h2> | ||
<p>Eloquent (adjective): | ||
|
||
Definition: Fluent or persuasive in speaking or writing; characterized by articulate expression. | ||
Example: The speaker delivered an eloquent speech that moved the audience to tears. | ||
Pernicious (adjective): | ||
|
||
Definition: Having a harmful effect, especially in a gradual or subtle way; causing great harm or damage. | ||
Example: The pernicious effects of smoking on one's health are well-documented. | ||
Ubiquitous (adjective): | ||
|
||
Definition: Present, appearing, or found everywhere; widespread. | ||
Example: In today's digital age, smartphones have become ubiquitous in our daily lives. | ||
Sycophant (noun): | ||
|
||
Definition: A person who acts obsequiously towards someone important to gain an advantage; a flatterer or yes-man. | ||
Example: The sycophant constantly praised the boss in the hope of getting a promotion. | ||
Serendipity (noun): | ||
|
||
Definition: The occurrence and development of events by chance in a happy or beneficial way. | ||
Example: Their meeting was a serendipity, leading to a lifelong friendship.</p> | ||
<a href="/student-dashboard.html" class="button">I'm Done!</a> | ||
</div> | ||
</body> | ||
</html> |