SeeFun.Dev
743 subscribers
348 photos
24 videos
7 files
189 links
He/Him

Building, coding, and sharing

Github- https://github.com/sifenfisaha

Dm- @see_fun
Download Telegram
SeeFun.Dev pinned Β«πŸš€ Hey everyone! Welcome to Sifen.Dev! πŸŽ‰ I’m sifen, and I’m super excited to share my web development journey with you all! πŸŒπŸ’» In this channel, I’ll be posting: Daily Coding Tips πŸ“ to help you level up your skills. Project Updates πŸ”„ on what I’m working on…»
🌟 Day 2: Heading Tags – Organizing Content πŸ“

Hey everyone! Today, I learned how to organize content on a webpage using heading tags. Did you know HTML has six different heading tags? From <h1> (the biggest) to <h6> (the smallest). Here’s how they look:

<h1>Main Heading</h1>
<h2>Subheading</h2>
<h3>Sub-subheading</h3>
<h6>Smallest Heading</h6>


At first, I thought these tags were just for changing text size, but it turns out they help search engines understand the importance of content!

Pro tip: Always use <h1> for the main title and the others to structure your page logically.

More tips coming tomorrow! Let’s keep learning together. πŸ’ͺ #HTMLHeadings #Day2
πŸ‘3πŸ”₯1
🌟 Day 3: β€œLists: My Website’s To-Do List” βœ”οΈ
"Today was all about making lists, both ordered and unordered. Basically, I’m creating to-do lists for my webpage using <ul> and <ol>. ⚑️ Who knew lists could be so... structured?! 🀯 I even made a list inside a listβ€”feels like inception! πŸŒ€"

Cool Tip:
"Always use lists when you're grouping things. It’s like giving structure to chaos!"

<ul>
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>

<ol>
<li>Step 1</li>
<li>Step 2</li>
<li>Step 3</li>
</ol>


#HTMLLists #WebDevelopment
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯2
🌟 Day 4: β€œLinking Up & Image Magic πŸ–Όβ€
"Added some magic today by learning how to link pages and insert images. 🌐 Check out how it works!"

<a href="https://example.com">Click here to visit Example!</a>

<img src="https://via.placeholder.com/150" alt="Placeholder Image">


#HTMLLinks #HTMLImages#CodeDaily #DevVlog
❀2
🌟 Day 5 : β€œCSS: Time for a Makeover! πŸŽ¨βœ¨β€
"Today, I’m diving into the wonderful world of CSS! It’s time to style up our website with some colors and fonts. Here's my simple makeover using CSS."

<style>
body {
background-color: #f2f2f2;
font-family: 'Arial', sans-serif;
}
h1 {
color: darkblue;
}
p {
color: #333;
font-size: 18px;
}
</style>

<h1>Welcome to My Styled Page!</h1>
<p>CSS makes everything look better!</p>
Please open Telegram to view this post
VIEW IN TELEGRAM
"Tip of the day! 🎯 Struggling to pick the perfect color? Use online color tools like [coolors.co](https://coolors.co) to find color palettes that look great together. It'll help make your site pop! 🎨✨"
#NewToolDiscovery
πŸ‘5πŸ”₯3
Channel name was changed to Β«Sifen.DevΒ»
🌟 Day 6 : β€œCSS Selectors: Target Specific Elements! πŸŽ―β€
"Today, I’m leveling up with CSS selectors! With selectors, I can style specific elements using class and ID. 🎯 Here’s a quick example that targets a heading and a paragraph using different methods."

<style>
.highlight {
color: red;
}
#main-heading {
font-size: 28px;
font-weight: bold;
}
</style>

<h1 id="main-heading">Welcome to My Page!</h1>
<p class="highlight">This paragraph is highlighted in red!</p>
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘1
Tip time! 🧐 Use classes (.class) when you want to apply the same style to multiple elements. Use IDs (#id) for unique elements that only appear once on your page. Remember: IDs should be used sparingly! πŸ’‘
πŸ‘4
🌟Day 7: β€œStyling Text: Fonts, Colors & More πŸŽ¨πŸ–‹β€

"Today, I’m exploring how to style text with CSS! πŸŽ¨πŸ–‹ Fonts, colors, sizesβ€”there’s so much you can do to make text stand out. Here’s how I customized my headings and paragraphs."

<style>
h1 {
font-family: 'Georgia', serif;
color: darkgreen;
text-align: center;
}
p {
font-size: 16px;
line-height: 1.5;
color: #555;
}
</style>

<h1>Beautiful Heading</h1>
<p>This is a paragraph with custom font size, line height, and color.</p>


#CSS #TextStyling #FontCustomization
Please open Telegram to view this post
VIEW IN TELEGRAM
Tip of the day! πŸ” Picking the right fonts can make a huge difference on your website! Use serif fonts like Georgia for headings and sans-serif fonts like Arial for body text. For awesome font pairings, check out [Google Fonts](https://fonts.google.com). πŸ’‘

#NewToolDiscovery
πŸ”₯2
🌟Day 8 : CSS Box Model: Padding, Borders & Margins πŸ§±πŸ“β€
"Today, I’m getting into the CSS Box Model! πŸ§±πŸ“ The box model is how elements are structured with padding, borders, and margins. Here's a simple example to understand how it works.

<style>
.box {
width: 200px;
padding: 20px;
border: 5px solid blue;
margin: 15px;
background-color: lightgrey;
}
</style>

<div class="box">
<p>This is a box with padding, border, and margin.</p>
</div>


#CSS #BoxModel #Padding #Margins #LearnCSS
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘3
Tip of the day! 🎯 The Box Model has four key layers: Content, Padding, Border, and Margin. Padding is the space inside the element, between the content and the border. Margin is the space outside the border. Play around with them to see how they affect the layout! πŸ’‘

#CSSTips #BoxModelExplained #WebDesign #CSSLayout
πŸ‘7πŸ”₯1🫑1
βœ”οΈ Day 9 : CSS Flexbox: Aligning Elements Made Easy! πŸ’ͺπŸ“β€
"Today, I’m learning about CSS Flexbox! πŸ’ͺπŸ“ It makes aligning elements super easy. Here’s a simple example of how to use Flexbox to center items both vertically and horizontally.

<style>
.container {
display: flex;
justify-content: center;
align-items: center;
height: 300px;
background-color: lightblue;
}
</style>

<div class="container">
<p>I'm perfectly centered!</p>
</div>


#CSS #Flexbox #LearnCSS #WebDesign
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘3
Tip of the day! ✨ Flexbox is perfect for layout control. Here's a quick breakdown:
- justify-content: Aligns items horizontally (left, right, center)
- align-items: Aligns items vertically
- flex-direction: Defines the direction of the flex items (row or column).
Check out [Flexbox Froggy](https://flexboxfroggy.com) to practice! 🐸

#NewToolDiscovery
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘3
Hey, Friends! πŸš€ it’s challenge time! πŸ† I'm stuck on Flexbox Froggy Level 24, and I need your help! 🐸


Drop your answers in the comments! Let's see who can solve it! πŸ’‘πŸ’¬
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘4
βœ”οΈ Day 10 : β€œCSS Grid: The Power of Layout! πŸ—Ίβœ¨ ”
Today, I’m diving into CSS Grid! πŸ—Ίβœ¨ Grid gives you superpowers when it comes to creating layouts. Here’s a quick example where I create a basic grid with two columns and two rows.

<style>
.container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 100px 100px;
gap: 10px;
}

.box {
background-color: lightblue;
padding: 20px;
text-align: center;
}
</style>

<div class="container">
<div class="box">Box 1</div>
<div class="box">Box 2</div>
<div class="box">Box 3</div>
<div class="box">Box 4</div>
</div>


#CSS #CSSGrid #WebDesign #LayoutMastery
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘5
Tip of the day! βš–οΈ Not sure when to use Flexbox or Grid? Here’s a simple guide:
- Flexbox is great for 1D layouts (aligning items in a row or column). Perfect for menus or navbars.
- Grid is your go-to for 2D layouts (both rows and columns). Ideal for complex page layouts.
Use them together for ultimate layout control! πŸ’ͺ

#CSSTips #FlexboxVsGrid #LayoutTips
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯4πŸ‘3
βœ”οΈ Day 11: β€œCSS Transitions: Smooth Changes, Big Impact! πŸŽ¨βœ¨β€
Today, I'm diving into CSS transitions! 🎨✨ Transitions allow for smooth changes between styles when a user interacts with elements. Here's a quick example of a button that changes color and size when hovered over.

<style>
.button {
background-color: lightblue;
padding: 10px 20px;
border: none;
border-radius: 5px;
transition: background-color 0.3s, transform 0.3s;
}

.button:hover {
background-color: lightcoral;
transform: scale(1.2);
}
</style>

<button class="button">Hover me!</button>


#CSS #Transitions
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ”₯2
Tip of the day! Want your websites to feel interactive and polished? Use CSS transitions to add smooth effects when users hover, focus, or click on elements. Just add a transition property to control the speed and behavior of your animations! πŸ’‘

#CSSTips #Transitions #InteractiveDesign
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘1
πŸŽ‰ Big Milestone: HTML & CSS Course Completed! πŸ’»
Super excited to share that I’ve officially finished my HTML & CSS course! πŸŽ“πŸ“œ It’s been an incredible journey learning the fundamentals of web design, and now it’s time to level up. πŸš€

Next step? I’ll be diving into coding real-world projects to put my skills into action! πŸ’ͺ Can’t wait to share my progress and creations with all of you. Stay tuned for some cool projects coming soon! πŸ› βœ¨

Let’s keep building and learning together! πŸ™Œ

#WebDevelopment #CodingJourney #HTML #CSS #ProjectsAhead #MilestoneReached
πŸ”₯9πŸ‘2πŸ‘1