Center the gallerz and put the h1 above it - center

Hey I'm new to this html and css world. I want to create a website about events but I don't know how can center everything.
Could someone help me please?
I want the h1 be on top of the gallery like the pic I draw.
https://imgur.com/f3P3V1A
https://imgur.com/StJioAQ
https://imgur.com/NQ0XL8n

You're probably looking for flexbox. You can find a good tutorial from CSS Tricks (https://css-tricks.com/snippets/css/a-guide-to-flexbox/). In particular, I think you're reaching for the "justify-content: center" and "align-items: center" properties.

Related

How do I align these elements to be the way I want?

I am working on an online composition notebook. Students would be able to use this without "losing" their notebook before a check... I need various elements aligned, but can't figure out how...
Link to project: https://drive.google.com/drive/folders/15YrZ5XkcyoyuAsVE29BSA-UEa67GmyBf?usp=sharing
What I wanted to happen is roughly created in Microsoft paint, but it is the basic gist of what the final UI, (Excluding the Title bar, and other stuff), should look like.
I tried using style="float:left" for the textbox inputs, and style="float:right" for the image, but it didn't work.
Thinking about it though, I still have a lot to learn, an example being of how I would be able to overlay the text over the image... I just thought it would be good enough of basic code to get some sort of help...
EDIT: Now that I have researched what this program does, the more I realize that so many more programs do it so efficiently... I have, in the end, decided to abandon the project.
It was the display: inline-block; that wouldn't let you align it. Simply align it like below.
<div style="text-align: left;">Left</div>
<div style="text-align: center; display: inline-block;">Center</div>
<div style="text-align: center;">Center</div>
<div style="text-align: right;">Right</div>

Hover over div, changes section background image?

I'm trying to recreate the features section:<section id="features"> # https://dreem.com/en/
Basically, I'd like to change the background images and text and iconography.
I've been playing around with it here: https://codepen.io/JordiUp/pen/XZJdQO
But I haven't figured out how to the get the hove transitions working.
Am I able to achive this effect within just a section using HTML and CSS, or am i missing something and need Javascript.
First time posting, Huge thanks in advance.
Hope it will work for you, Please refer this link
https://www.tutorialrepublic.com/codelab.php?topic=faq&file=css-image-swap-on-hover

creating an animated logo completly from text with html/css

I'm new in HTML/CSS world, and just started my first project, so i need some help :) I'm trying to create temporary "coming soon" page, that has only company logo that is made of Company Name, and short 4-word Description that goes directly under Company paralel with last 4 letters.. Company Name font is diferent and way larger than Description.. animation needs to raplace that Description with Coming Soon message.. once i group that all togeather i have a problem positioning it in center of a browser and to be responsive.. i'm usin h1 for Company Name and p for Description and message..
I have sorted out your problem into 2 main parts, Font Sizes and Responsive elements, tell me if any other problem is required.
Firstly, The use of h1 element is not encouraged, you should be using font-size:10px as that can give out much more option Css Trick had made a great article on it:https://css-tricks.com/almanac/properties/f/font-size/
Secondly, Responsive element that needs to be always in middle can be made with margin: auto; or text-align: center;.
Again, W3School had some pro tip on it:https://www.w3schools.com/css/css_align.asp
Hope this can solve your problem and good lucking on learning Webpage making!

Grid/Box Header Menu Dreamweaver

I'm an HTML/CSS beginner. I've made my first homepage without too much difficulty but I want to add some style to my header.
Could someone point me in the direction of a tutorial or basics of how to build a grid for my links or a starting point? I've been looking for one and typing up grid or table results in tutorials to create actual tables so I've not found anything appropriate to what I want to do yet.
From what I can gather if I can separate each list item and give it a border my idea is achievable but I'm struggling with positioning.
I don't know if Dreamweaver supports it, but i'd wrap the menu in a <div> that uses the CSS display: table-row attribute. Then i'd wrap each menu item in a separate <div> that uses the CSS display: table-cell attribute.
There is plenty of resources out there, I would reccommend checking around CSS Tricks and Site Point.
Here is one from sitepoint
Here is one from CSSnewbie
Here is one from CSS-Tricks

Center group of images not working ( classes )

No matter what I have tried - I can not seem to get a group of images to center on my page. Anyone have any thoughts? This is wracking my brain.
breakwatersurf.com is where the uncentered images are. You will see the shop mens and shop womens don't line up with the bottom divider lines.
Stack overflow doesn't like my code and wont allow me to use code tags so please inspect the elements on my webpage for html / css
I Have tried so many variations of css without any luck. I know the answer is simple but I can't seem to find out why my won't center anywhere.
Thanks for the help!
Give to the shop womens image a float: right style in your CSS. I did this with the element inspector and it works:
<img class="groupcenter" src="http://breakwatersurfcompany.com/wp-content/uploads/2013/01/righthalf.png" alt="righthalf" width="565" height="500" style="float:right">
And learn how to use the site. People here don't like to help if you don't follow the site rules.