HTML Quiz
Which of the following HTML elements is used to create a hyperlink?
Which of the following HTML elements is used to create a hyperlink?
Anonymous Poll
8%
A) <div>
10%
B) <span>
76%
C) <a>
6%
D) <p>
HTML Quiz - 2
Which HTML element is used to define an unordered list?
Which HTML element is used to define an unordered list?
Anonymous Quiz
86%
A) <ul>
9%
B) <ol>
5%
C) <li>
0%
D) <dl>
❤5👏4
Python Quiz - 1
Which of the following is the correct way to print a message in Python?
Which of the following is the correct way to print a message in Python?
Anonymous Quiz
22%
A) print "Hello, World!"
7%
B) echo "Hello, World!"
15%
C) printf("Hello, World!")
56%
D) print("Hello, World!")
❤1👍1
Do yourself a favor:
• Open your laptop
• Open YouTube
• Type HTML crash course
• Start learning
• Learn CSS and JS Step-by-step
• Ask questions to ChatGPT
• Build projects
• Push code to GitHub
• Share your progress here in our discussion
Procedure is easy.
Being consistent is hard.
@EmmersiveLearning
• Open your laptop
• Open YouTube
• Type HTML crash course
• Start learning
• Learn CSS and JS Step-by-step
• Ask questions to ChatGPT
• Build projects
• Push code to GitHub
• Share your progress here in our discussion
Procedure is easy.
Being consistent is hard.
@EmmersiveLearning
👍5❤2
HTML Quiz - 3:
Which attribute is used to specify an alternate text for an image, if the image cannot be displayed?
Which attribute is used to specify an alternate text for an image, if the image cannot be displayed?
Anonymous Quiz
21%
A) src
70%
B) alt
2%
C) noscript
7%
D) href
Tip: Use Relative Units
When designing a responsive website, use relative units like
This ensures your design adapts to different screen sizes more fluidly.
@EmmersiveLearning
When designing a responsive website, use relative units like
percentages, em, and rem instead of fixed units like pixels. This ensures your design adapts to different screen sizes more fluidly.
@EmmersiveLearning
❤5👍5
CSS Quiz - 1
Which of the following property is used to set the background color of an element?
Which of the following property is used to set the background color of an element?
Anonymous Quiz
6%
a) color
76%
b) background-color
6%
c) background
12%
d) bgcolor
👍3
Forwarded from Muhammed Teshome
Freelancers,
Remote Workers,
Youtubers,
Tiktokers,
Content Creators
and Other Dollar payable ones...
እናንተ ወጥሩ! በርቱ... ዶላሩን በደንብ አስገቡ 😊... ለናንተ አሪፍ (ይመስላል)።
Remote Workers,
Youtubers,
Tiktokers,
Content Creators
and Other Dollar payable ones...
እናንተ ወጥሩ! በርቱ... ዶላሩን በደንብ አስገቡ 😊... ለናንተ አሪፍ (ይመስላል)።
❤6👍2😁2
Forwarded from Pavel Durov (Pavel Durov)
Please open Telegram to view this post
VIEW IN TELEGRAM
🤯5🤮2
Web Developer Skill Set:
Front-End Development:
> HTML
> CSS
> JavaScript
> React, Angular, Vue.js
Back-End Development:
> Node.js
> Express.js
>Django (Python)
> Ruby on Rails
Databases:
> SQL (MySQL, PostgreSQL)
> NoSQL (MongoDB, Firebase)
Version Control:
> Git
> GitHub/GitLab/Bitbucket
Web APIs:
> RESTful APIs
> GraphQL
Web Performance:
> Optimization
> Caching
> CDNs
Package Managers/ Bundler:
> NPM
> Webpack
> Vite
Hosting and Deployment:
> Heroku
> Netlify
>AWS, Azure
Styling:
>SASS/SCSS
>Bootstrap
>Tailwind CSS
@EmmersiveLearning
Front-End Development:
> HTML
> CSS
> JavaScript
> React, Angular, Vue.js
Back-End Development:
> Node.js
> Express.js
>Django (Python)
> Ruby on Rails
Databases:
> SQL (MySQL, PostgreSQL)
> NoSQL (MongoDB, Firebase)
Version Control:
> Git
> GitHub/GitLab/Bitbucket
Web APIs:
> RESTful APIs
> GraphQL
Web Performance:
> Optimization
> Caching
> CDNs
Package Managers/ Bundler:
> NPM
> Webpack
> Vite
Hosting and Deployment:
> Heroku
> Netlify
>AWS, Azure
Styling:
>SASS/SCSS
>Bootstrap
>Tailwind CSS
@EmmersiveLearning
❤3
HTML Quiz - 4
What is the correct HTML element for inserting a line break?
What is the correct HTML element for inserting a line break?
Anonymous Quiz
85%
A) <br>
4%
B) <lb>
7%
C) <break>
3%
D). <newline>
👍6😁1🤔1
Tip : Make your site Mobile Responsive
Did you know? As of 2024, 60.67% of website traffic comes from Mobile Devices.
By 2025, there will be over 1 billion 5G connections globally.
92.3% of internet users consider accessing the internet through their smartphones compared to other devices
Ensuring your site is responsive is crucial for reaching this audience effectively.
@EmmersiveLearning
Did you know? As of 2024, 60.67% of website traffic comes from Mobile Devices.
By 2025, there will be over 1 billion 5G connections globally.
92.3% of internet users consider accessing the internet through their smartphones compared to other devices
Ensuring your site is responsive is crucial for reaching this audience effectively.
@EmmersiveLearning
❤5
#Arthimetic Operators
num1 = 2
num2 = 5
#artimetic operation =7
# + , - , *, /, %, //, **
#addition
print(num1 + num2)
print(2+5)
#subtration
print(num1 - num2)
print(10-5)
#multiplication
print(num1 * num2)
print(100* 5)
#divition
print(num1 / num2)
print(1000/2)
#floor division // ... 5//2= 2.5
print(num1//num2)
print(100//3)
#modulus = % 5/2 =2 qeri 1... 11/3 = 3 qeri 2
print(5%2)
print(11%3)
#exponent 2*2*2*2
print(2**6)
print(100**3)
Python Code snippet from Our Todays Class On Arithmetic Operators.
@EmmersiveLearning
❤4👍1
#Comparison Operators
num1= 10
num2 = 20
#Comparison Operators : ==, !=, > , < , >= , <=
print(num1 == num2)
print(num1 != num2)
print(num1>num2)
print(num2 > num1)
print(num1<num2)
print(num1>=num2)
print(num1<=num2)
Python Code snippet from Our Todays Class On Comparison Operators.
@EmmersiveLearning
❤5