Looking for some guidance on coding a homepage with HTML and CSS as I navigate my way through the world of web development.
Take a look at this screenshot for reference:
In the Jumbotron section, you'll notice that I have integrated a couple of bootstrap buttons. What I aim to achieve is having these buttons trigger an action where the user's default email client opens in a new tab with a 'mailto' link.
If anyone could provide me with instructions on how to implement this feature, I would greatly appreciate it.
https://i.stack.imgur.com/fat70.png
A snippet of my HTML code:
<div class="jumbotron">
<h1>Bespoke Recruitment Solutions</h1>
<p class="lead">We are an independant recruitment company based in Leicester specialising in providing bespoke HR services.<br> We take the time to understand our clients vision, goals and culture allowing us to engage with the right talent to fill the vacancy.</p>
<p class="text-center"><a class="btn btn-primary btn-lg" role="button">Submit Your CV</a><a class="btn btn-danger btn-lg" role="button">Fill A Vacancy</a></p>
</div>