[Tutorial] Building blocks of Frontend development - HTML5 AND CSS3 #284
Open
0506beulah wants to merge 33 commits intosodafoundation:masterfrom
Open
[Tutorial] Building blocks of Frontend development - HTML5 AND CSS3 #2840506beulah wants to merge 33 commits intosodafoundation:masterfrom
0506beulah wants to merge 33 commits intosodafoundation:masterfrom
Conversation
Update README.md
html tags updated
CSS3 content is updated
CSS Properties
Update LSS INFORMATION
HTML TAGS UPDATED
UPDATED CSS3 INFORMATION
CSS TAGS UPDATED
anvithks
requested changes
Mar 27, 2023
Member
anvithks
left a comment
There was a problem hiding this comment.
Overall good work. @0506beulah @nimrafathima @Meena-srinivas @Muhammed-Azmeel @meevelfrancis06
please handle the review comments.
| } | ||
|  | ||
|
|
||
| # INTRODUCTION TO LSS |
| - Less (Leaner Style Sheets) is a dynamic preprocessor style sheet language that can be compiled into Cascading Style Sheets (CSS) and run on the client side or server side. | ||
| - It was Designed by Alexis Sellier. | ||
|
|
||
| - ESS is an abbreviated `Learner Style styles`, is an opensource pre-processor language for CSS, The preprocessor is writing a code using a superset of CSS features, compiling this code to native CSS, and browser understanding CSS styles. |
Member
There was a problem hiding this comment.
What is ESS? are you referring to LESS?
Looks like the content here is repeated. May want to check and keep only relevant content.
| @@ -0,0 +1,459 @@ | |||
| # INTRODUCTION TO HTML5! | |||
|
|
|||
| HTML stands for *Hyper Text Markup Language. It is used to design web pages using a markup language. HTML is an abbreviation of Hypertext and Markup language. Hypertext defines the link between the web pages. **HTML 5* is the <u> fifth and current version of HTML. | |||
|
|
||
| ## CSS Example | ||
|
|
||
| body { |
Member
There was a problem hiding this comment.
Consider using a code block
```css
<your css styles here>
```
body {
background-color: lightblue;
}h1 {
color: white;
text-align: center;
}p {
font-family: verdana;
font-size: 20px;
}|
|
||
| Set the accent color for different user-interface controls: | ||
|
|
||
| input[type=checkbox] { |
Member
There was a problem hiding this comment.
Consider using a css code block
|
|
||
| Add a graphical effect to the area behind an element: | ||
|
|
||
| div.transbox { |
Member
There was a problem hiding this comment.
Consider using a css codeblock
|
|
||
| Set the style of the top border for different elements: | ||
|
|
||
| h1 { |
Member
There was a problem hiding this comment.
Consider using a css codeblock
|
|
||
| # A SIMPLE RESUME USING HTML | ||
| ```` | ||
| <div class="resume"> |
anvithks
previously approved these changes
Apr 4, 2023
Member
anvithks
left a comment
There was a problem hiding this comment.
LGTM!
Good job @0506beulah @Meena-srinivas @Muhammed-Azmeel @nimrafathima
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.