Communities

Writing
Writing
Codidact Meta
Codidact Meta
The Great Outdoors
The Great Outdoors
Photography & Video
Photography & Video
Scientific Speculation
Scientific Speculation
Cooking
Cooking
Electrical Engineering
Electrical Engineering
Judaism
Judaism
Languages & Linguistics
Languages & Linguistics
Software Development
Software Development
Mathematics
Mathematics
Christianity
Christianity
Code Golf
Code Golf
Music
Music
Physics
Physics
Linux Systems
Linux Systems
Power Users
Power Users
Tabletop RPGs
Tabletop RPGs
Community Proposals
Community Proposals
tag:snake search within a tag
answers:0 unanswered questions
user:xxxx search by author id
score:0.5 posts with 0.5+ score
"snake oil" exact phrase
votes:4 posts with 4+ votes
created:<1w created < 1 week ago
post_type:xxxx type of post
Search help
Notifications
Mark all as read See all your notifications »
Q&A

Welcome to Software Development on Codidact!

Will you help us build our independent community of developers helping developers? We're small and trying to grow. We welcome questions about all aspects of software development, from design to code to QA and more. Got questions? Got answers? Got code you'd like someone to review? Please join us.

Post History

75%
+4 −0
Q&A How to align my content to the left?

This revolves around images. I'm trying to write an HTML page of COVID-19 safety procedures, and here's what I've written so far: <!DOCTYPE html> <html> <head> <title&...

2 answers  ·  posted 2y ago by General Sebast1an‭  ·  last activity 8mo ago by Peter Taylor‭

Question html css alignment image
#1: Initial revision by user avatar General Sebast1an‭ · 2021-11-24T14:57:09Z (over 2 years ago)
How to align my content to the left?
This revolves around images. I'm trying to write an HTML page of COVID-19 safety procedures, and here's what I've written so far:

```
<!DOCTYPE html>

<html>
	<head>
		<title>COVID-19 Safety</title>
		<style>
			body {
				background-color: PEACHPUFF;
				margin-left: 300px;
				margin-right: 300px;
				margin-top: 50px;
				font-size: 20px;
			}
			img {
				width: 200px;
				height: 150px;
			}
		</style>
	</head>
	
	<body>
		<h1>To prevent the spread of COVID-19:</h1>
		<hr>
		<img src="img/wash-hands.png" alt="Wash hands." align="left">
		Clean your hands often. Use soap and water, or an alcohol-based hand rub.
		<hr>
		<img src="img/social-dis.png" alt="Social distance." align="left">
		Maintain a safe distance from anyone who is coughing or sneezing.
		<hr>
		<img src="img/mask.png" alt="Wear mask." align="left">
		Wear a mask when physical distancing is not possible.
		<hr>
		<img src="img/dont-touch.png" alt="DON'T TOUCH." align="left">
		Don't touch your eyes, nose or mouth.
		<hr>
		<img src="img/cover.png" alt="Cover mouth and nose." align="left">
		Cover your nose and mouth with your bent elbow or a tissue when you cough or sneeze.
	</body>
</html>
```

I got the styles added, the lines, the pictures. But now my problem lies on alignment. Here's how the result looks like in Chrome:

![Result I didn't want:](https://software.codidact.com/uploads/WDG3AJ5Y7kEJ1vwCEDjpcqyQ)

I wanted it this way:

![Result I wanted:](https://software.codidact.com/uploads/9nDJuVzqFQViCqNECV7eEgPy)

Don't mind the images being different. I'm struggling with the fact these images won't align and I'm not sure how to fix it. So where to begin?