I need to use HTML and "Dreamweaver" to create links to and from different pages

of text? Hey, I was wondering if you could walk me through how to take a PDF file, and put it in dreamweaver (what template do i use, how do i import the file, etc.) Then I was wondering if you could help by giving me a tutorial on how create a "button" or "link" using HTML code, so I can separate the abstract from the rest of the paper (these are published scientific papers.) So my goal is to be able to view an entire science paper, or to just click a link, or button, to give me a short cut to the abstract. Thank you so much.
 
1a.you make a link like this: <a href="wherever.html">Wherever</a>
1b.you make a button like this: <button href="wherever.html">Wherever</button>
2. can you just copy and paste the pdf into dreamweaver?
3. code find the part where it says "abstract" in the paper, the title to start the abstract section. put these tags around the word so it should look like this: <a name="abstract"><h2>Abstract</h2></a>
4. then at the top for your button put <button href="#abstract">Go to Abstract</button>
 
Back
Top