-
Notifications
You must be signed in to change notification settings - Fork 1
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
e48055b
commit c755c65
Showing
1 changed file
with
68 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,68 @@ | ||
<!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>the alchemist</title> | ||
<link rel="stylesheet" href="style.css"> | ||
</head> | ||
<body> | ||
<div class="container" > | ||
<div id="myHeader" class="header"> | ||
<a href="index.html"><button class="home-button">Home</button></a> | ||
<button class="bookmark-button">Bookmark</button> | ||
<div class="wrapper"> | ||
<input type="text" id="text-to-search" placeholder="Enter text to search..."> | ||
<button onclick="search()">Search</button> | ||
</div> | ||
</div> | ||
<h6>Author</h6> | ||
<h1>Paulo Coelho</h1> | ||
<h6>Brazilian lyricist</h6> | ||
<p id="paragraph"> | ||
The merchant looked anxiously at the boy. All the joy he had | ||
seen that morning had suddenly disappeared. | ||
“I can give you the money you need to get back to your country, | ||
my son,” said the crystal merchant. | ||
The boy said nothing. He got up, adjusted his clothing, and | ||
picked up his pouch. | ||
“I’ll work for you,” he said. | ||
And after another long silence, he added, “I need money to buy | ||
some sheep.” | ||
|
||
Chapter 2 | ||
|
||
|
||
THE BOY HAD BEEN WORKING FOR THE CRYSTAL MERCHANT for almost a | ||
month, and he could see that it wasn’t exactly the kind of job that | ||
would make him happy. The merchant spent the entire day | ||
mumbling behind the counter, telling the boy to be careful with the | ||
pieces and not to break anything. | ||
But he stayed with the job because the merchant, although he | ||
was an old grouch, treated him fairly; the boy received a good | ||
commission for each piece he sold, and had already been able to put | ||
some money aside. That morning he had done some calculating: if | ||
he continued to work every day as he had been, he would need a | ||
whole year to be able to buy some sheep. | ||
“I’d like to build a display case for the crystal,” the boy said to | ||
the merchant. “We could place it outside, and attract those people | ||
who pass at the bottom of the hill.” | ||
“I’ve never had one before,” the merchant answered. “People | ||
will pass by and bump into it, and pieces will be broken.” | ||
“Well, when I took my sheep through the fields some of them | ||
might have died if we had come upon a snake. But that’s the way life | ||
is with sheep and with shepherds.” | ||
</p> | ||
<div> | ||
<h5 class="pageNumber">Page 21</h5> | ||
<a href="alchemist20.html" class="previous">« Previous</a> | ||
<a href="alchemist22.html" class="next">Next »</a> | ||
</div> | ||
|
||
</div> | ||
|
||
<!-- script --> | ||
<script src="script.js"></script> | ||
</body> | ||
</html> |