Book Image

Prezi HOTSHOT

By : HLCN Van Groenendaal
Book Image

Prezi HOTSHOT

By: HLCN Van Groenendaal

Overview of this book

Table of Contents (18 chapters)
Prezi HOTSHOT
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

Embedding the prezi


Our first task in this exciting project is to embed our prezi in a webpage. So, first we need an empty webpage.

Prepare for lift off

Open your favorite HTML editor and open a new empty HTML page. Make sure you are working in the code view.

If you use a simple text editor, you can type the following code:

<html>
<head>
<title>The world of bees</title>
</head>
<body>
</body>
</html>

Save your file as world-of-bees.html.

Adobe Dreamweaver (and most other HTML editors) add additional code to your page as you can see in the next screenshot. The previous code gives you a better HTML page, but it's not necessary for the page to work.

In the following information box, you can find some extra information about HTML and CSS:

Note

HTML is the abbreviation for HyperText Markup Language and is the main language used to create webpages. HTML elements consist of tags and mostly come in pairs such as <h1></h1> or <body></body...