Make Description list alignment url - html

I am a big html/bootstrap noob so sorry for a stupid question.
I have a this html/bootstrap Description list alignment.
How do i mark it as a link, so its clickable?
Thanks
<dt>Web</dt><dd class="personal_company_profile"></dd>

The main thing i get is that 'How to make and clickable?' I guess so. Anyways, just put anchor tag inside the .<dt>Web</dt>. Try to use that.

Related

CSS I want to center a image in a button that is linkable

I want to make a button with the discord logo but when I try to add the anchor tag the text goes down a bit and it becomes uncentered.
Is there a way to fix this or a different way I should be approaching this?
HTML Code:
<li class="nav__btn">
Join our Discord
</li>
Try reading this to see if it could help out.
https://coder-coder.com/how-to-center-button-with-html-css/
I would assume it would work the same way with an image button. Also try experimenting with div tags.
You have mistake in your code here: "button" >< img class.
Better use button tag for this, see example button with icon.
Also, provide some screenshot what exactly do you need.

Facing issue in getting HTML data centered

I am new to HTML. I want to take this data in the middle of the page but am not able to do this.
I just want to achieve the same thing as:
I'm not sure if you are referring a data as text based on the image you mentioned. you can use text-align: center in your stylesheet.
Your question is unclear, we need more details. It may be simple and you just need to apply a text-align: center to the element wrapper the text.
In future, edit your post to show us your code and a screenshot of what you have so far. Otherwise, we cannot give you much help.
Right now it looks as if you're asking us how to create something that resembles that image. Stackoverflow doesn't take kindly to that.

Non-clickable placeholder needed

I am building a site for a client that will eventually need button links and need to be clickable. For now, though, I would just like a placeholder anchor tag for future use, but I DON'T want it to be clickable. Is there a way to do this? Below, the 'small red button' is a clickable link, but doesn't go anywhere. I just don't want to confuse the client when they see the mockup and the link doesn't work.
What’s <strong>New</strong>
Thanks! And sorry if this is a newbie question.
EDIT: It worked like this, as suggested:
<a class="small-red-button">What’s <strong>New</strong></a>
Thanks everyone!
Take the href attribute out. It is what makes an anchor element into a link.
What’s <strong>New</strong>
it's still a clickable anchor but it as no efect (ie. does't change your adress to www.site.com/#)

Floating images using LightBox 2.6

By the look of the posts here I'm in the deep end with the big boys whereas I need the toddlers paddling pool. So apologies if I'm in the wrong place with my basic problem.
I can't get images to float with LightBox [v. 2.6]
I have a sample problem page here - http://quivis.co.uk/PROBLEMS/lightbox-float/index.html
That page has 2 copies of the same image. Both 'work' in the sense that when you click them LightBox does its brilliant thing and fires up correctly, but both image links display incorrectly.
The top image looks as it should i.e. with mouse-over highlights/border colours etc but will not float right. In some browsers there is also a large redundant area to the left that I am unable to remove.
The bottom image floats as I want it to but in the process the image link styling is lost.
As all things are possible it must be possible to combine the look of 1 with the positioning of 2 but I can't see how to do it!
All the related files are within the 'PROBLEMS' folder. Please let me know if I should paste the html or css here.
Any help much appreciated. Thanks, Duncan
Set float:right style to a tag instead of float:right to images.
And there is mis-spelling of class attribute in second a tag, it is mentioned as 'xclass', correct that spelling too.

Should i put images into a paragraph or a html list? - HTML

Should i put images into a paragraph or a html list? - HTML
Example, should i do it like this?
<p><img><img><img></p>
Or like this?
<ul><li><img><li></li><img><li></li><img></li></ul>
Or somehow else?
EDIT: sorry i forgot to tell you for what i use the images. It's a gallery. I just wanted to know which one is the proper way, or are this 2 both the proper way? Thank you.
I believe you should use lists or tables to organize your images, depending on how you want to look. You might want to set it up so you have no bullets or borders in your gallery, though.