Copy link to clipboard
Copied
Good afternoon,
I am trying to create a menu button in dreamweaver 2021. It has been a while since I used dreamweaver, and I was going by a textbook that I used in school. Some of the information is new in the dreamweaver 2021. For instance, when creating a menu bar, the inline command is not in the property or layout panel. I started with the navigation through the insert panel, and I typed in the menu bar.
Copy link to clipboard
Copied
Today we use ordinary HTML links styled with CSS to look like buttons.
As an example.
<!DOCTYPE html>
<html lang="en">
<head>
<style>
a:link, a:visited {
background-color: white;
color: black;
border: 2px solid green;
padding: 10px 20px;
text-align: center;
text-decoration: none;
display: inline-block;
}
a:hover, a:active, a:focus {
background-color: green;
color: white;
}
</style>
</head>
<body>
<h2>Link Button</h2>
<a href="some-page.html">This is a link</a>
</body>
</html>