04-03-2024, 12:26 PM
(This post was last modified: 04-03-2024, 01:07 PM by Kernelpanic.)
Looks very good, bright and friendly. But where there is light, there is also shadow. . . no seriously. So that one don't leave the page when one click on the download button at the top left, for example, you should do the following:
<li><a href="https://github.com/QB64-Phoenix-Edition/QB64pe/releases/latest" target ="_blank"><button>Download</button></a></li>
The target "_blank" ensures that a new page is opened.
<li><a href="https://github.com/QB64-Phoenix-Edition/QB64pe/releases/latest" target ="_blank"><button>Download</button></a></li>
The target "_blank" ensures that a new page is opened.
Code: (Select All)
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>QuickBasic64 Infoblog </title>
</head>
<body>
<li><a href="https://github.com/QB64-Phoenix-Edition/QB64pe/releases/latest" target ="_blank"><button>Github Download</button></a></li>
<li><a href="http://www.harley-davidson.com/" target="_blank"><button>Harley Davidson</button></a></li>
</body>
</html>