Тёмный

CSS Text and Fonts Tutorial for Beginners - Typography 

Dave Gray
Подписаться 342 тыс.
Просмотров 27 тыс.
50% 1

Опубликовано:

 

29 сен 2024

Поделиться:

Ссылка:

Скачать:

Готовим ссылку...

Добавить в:

Мой плейлист
Посмотреть позже
Комментарии : 56   
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 года назад
Text makes up a huge amount of the content on the web, and the presentation of text and fonts is what Typography is all about. In this tutorial, we'll cover the most common text and font settings in CSS and apply them to an HTML example so you can see the changes. If you are just starting with CSS, I recommend going to the beginning of this CSS for Beginners playlist: ru-vid.com/group/PL0Zuz27SZ-6Mx9fd9elt80G1bPcySmWit
@ahmad-murery
@ahmad-murery 2 года назад
One more thing about fonts is that some fonts may support multiple character-sets (English, Arabic, symbols... for example) while some others don't, so, for multi-lingual dynamic websites it becomes hard to distinguish where a specific language is used so we can set the proper font properties, the good thing is that we can use the @font-face css rule to create custom fonts by merging unicode ranges from multiple font files, Thanks Dave,
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 года назад
Awesome input here, Ahmad! 💯 Thank you for this valuable info. 🙏🙏
@ahmad-murery
@ahmad-murery 2 года назад
@@DaveGrayTeachesCode Trying to be helpful whenever I can, so thanks for giving me the opportunity 👍
@prathaps1
@prathaps1 Год назад
Hi Grey, am from INDIA Heartful thanks for this session and all videos. I am learning every sessions. Bigg salute to you my best teacher.
@SarrahRoseMikhailLeung
@SarrahRoseMikhailLeung 2 месяца назад
Great video!
@yavuzselimoksuz6795
@yavuzselimoksuz6795 Год назад
Thank you so much professor
@letuslearnmore
@letuslearnmore Год назад
Great explanation. Thank you
@DaveGrayTeachesCode
@DaveGrayTeachesCode Год назад
Glad it was helpful!
@TravinskiyVladislav
@TravinskiyVladislav 2 года назад
Thank you, Dave
@hiwayshoes
@hiwayshoes 2 года назад
Hi Dave, great tutorial as usual! Just a question about Google Fonts, is it preferable to link the font in the HTML or import the font through CSS? I’ve looked through Google Font docs and I can’t seem to find any reason from them one way or the other. Is there some kind of performance value involved? It’s always seemed strange to me, but I’m still learning -ha! Anyhow, thanks for all you do, and you have a great day, too… Cheers 💖!
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 года назад
You can do either. I think any performance impact is so small that I've never seen it discussed. I prefer adding it with the CSS import.
@Knards
@Knards 2 года назад
@@DaveGrayTeachesCode I do too
@IG7799-c4u
@IG7799-c4u 2 года назад
The CSS import code looks cleaner, and it's less code so even if it's a miniscule difference it's preferable :)
@Devgosphere2365
@Devgosphere2365 Год назад
this is my first time learning CSS and it seems to be too overwhelming to remember everything. does anyone else feel this way?
@andromilk2634
@andromilk2634 3 месяца назад
I don't think you're supposed to remember everything...You can always just look up stuff online.
@omkar1307
@omkar1307 Год назад
hey sir inside github typography css code is not visible could you please check once lesson_6
@vijaybalaji7403
@vijaybalaji7403 Год назад
hi there Dave, 6 Months back i spent some around 500$ on web dev course and I felt worse of being not satisfied with them, It seems they want to complete the course without our concern whether we understand these concepts or not, I felt took wrong decision, wasted Time and money on them But here You are A Life saver......
@DaveGrayTeachesCode
@DaveGrayTeachesCode Год назад
Glad I could help!
@kaberanshutisamuel1856
@kaberanshutisamuel1856 4 месяца назад
On google fonts, why am I not seeing the option to select multiple styles ?
@pooyannajafi
@pooyannajafi 7 месяцев назад
Thanks a lot David, very well-paced and informative.
@ecomadvisor.
@ecomadvisor. Месяц назад
How about custom fonts
@napoleon3242
@napoleon3242 2 года назад
Hi Dave, can you give the list of extenstions you are using? What is the specific extension that allows for yellow dashed lines to show matching comment tags on 4:36 ?
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 года назад
I think the specific extension you are asking about is Bracket Pair Colorizer 2. I am currently using the Github theme also. I made one video for recommended extensions but I should do another one this year: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-xQcpQfEumQw.html
@phionaaladina
@phionaaladina Год назад
Excellent video. Easy to comprehend.
@louiidelosreyes742
@louiidelosreyes742 Год назад
Done! :)
@webb-developer
@webb-developer Год назад
text decoration and transform, decoration , align : done! font all done remaining : a lot ☑ important : font in button and form aren't inhereted at 3:09
@mehdizarei6305
@mehdizarei6305 2 года назад
im waiting for CSS full tutorial🔥
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 года назад
It is in the works 🚀🚀
@shawnlee5956
@shawnlee5956 2 года назад
Hi Dave, Thanks for the Clear and Simple example, some of then are new to me~
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 года назад
You're welcome! 🙏
@GabrielSouza-yy2rq
@GabrielSouza-yy2rq 2 года назад
That's very good content, as always. Thank you!
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 года назад
You're welcome!
@biggybig358
@biggybig358 2 года назад
Yeah, I found my new virtual friend
@IG7799-c4u
@IG7799-c4u 2 года назад
This isn't really referencing the topic of this video, but at the start when you used padding on the body with percentages, where is it getting that padding size from? Since the body is the parent element of everything else. Is it just the percentage of the size of the body itself?
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 года назад
Good thoughtful question IG. Yes, the body element is a block element and has no container parent limiting its size. Therefore, it has 100% width of the page. The 10% references the width of the body. More specifically, MDN helps with this definition: "The size of the padding as a percentage, relative to the inline size (width in a horizontal language, defined by writing-mode) of the containing block." developer.mozilla.org/en-US/docs/Web/CSS/padding
@IG7799-c4u
@IG7799-c4u 2 года назад
@@DaveGrayTeachesCode Thanks for helping me understand, I greatly appreciate it! :)
@Adnan-h7t6y
@Adnan-h7t6y Год назад
For comment. we can also use the select the code part we want comment then Press the ctrl +/ .
@DaveGrayTeachesCode
@DaveGrayTeachesCode Год назад
Yes, that works well.
@younow3353
@younow3353 2 года назад
Please David make videos about reactJS real small projects
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 года назад
I will continue to make React tutorials 💯 Thanks for the request!
@matheeson
@matheeson 10 месяцев назад
Thank you 👍🏾
@regilearn2138
@regilearn2138 2 года назад
Hi , thanks for all the support for react /javascript developers, my request is please do a react video how to use* All the FORM components like radio btn, select box,Checkbox,input, ,calendar etc,and group of those elements* and practically what we use in industry to build apps **without any third part library please only use pure react with hooks***,bcz it will give the clear idea before moving in to formik or any other libruary,i would appreciate if u can use Mongodb for this.I know u will help on this.
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 года назад
Good suggestions! I do have a React Login series that starts with creating an accessible React form and uses no additional libraries: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-brcHK3P6ChQ.html This same series connects to the backend REST API built in my Node JS for Beginners course and that REST API is connected to MongoDB. All of the details on using MongoDB are in the Node JS course: ru-vid.com/video/%D0%B2%D0%B8%D0%B4%D0%B5%D0%BE-f2EqECiTBL8.html
@regilearn2138
@regilearn2138 2 года назад
@@DaveGrayTeachesCode yes i agree Dave, actually my requirement is how to use react with hooks for radio btn,select box and calendar components(biggest problems with date and time) and how group of them work and file upload kind of **advanced form control **,which we use in actual real world project,so if you an please do a video how these advanced form controls use(other than input text email password) how to enter those values and how to retrieve those values using react and hooks without any 3rt party library(without formik/react hook form etc).its basically master every FORM controls with pure react and hooks(bcz i beleve someone/developer know how those form control work you know how to debug your code when its comes to critical situation). So pls do a series for these, currently there are no proper series for this in you tube. appreciate your support on these,so it will bring catered knowledge in to on series.
@regilearn2138
@regilearn2138 2 года назад
Dave ,we are(our students) eagerly waiting for this video series pls consider
@mehdizarei6305
@mehdizarei6305 2 года назад
you are awesome my friend;) keep going
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 года назад
Thank you! 💯
@mytechnotalent
@mytechnotalent 2 года назад
Fantastic Dave thank you!
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 года назад
You're welcome, Kevin!
@khoka22
@khoka22 Год назад
Thanks a lot sir
@DaveGrayTeachesCode
@DaveGrayTeachesCode Год назад
You're welcome!
@sushantkunkekar2155
@sushantkunkekar2155 2 года назад
Thanks Dave
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 года назад
You're welcome! 🙏
@matinsasan
@matinsasan 2 года назад
Congratulations on posting a video on freeCodeCamp. I hope that attracts you a lot of viewers to your channel.
@DaveGrayTeachesCode
@DaveGrayTeachesCode 2 года назад
Thank you, Matin! 🙏
Далее
Write less code with these 5 CSS tips
15:38
Просмотров 47 тыс.
CORTE DE CABELO RADICAL
00:59
Просмотров 2,2 млн
ТАРАКАН
00:38
Просмотров 727 тыс.
Witch changes monster hair color 👻🤣 #shorts
00:51
CSS Floats and Clears Tutorial for Beginners
13:08
Просмотров 22 тыс.
7 Practical CSS Typography Tips & Tricks
20:17
Просмотров 3,8 тыс.
CSS Selectors Tutorial for Beginners
20:34
Просмотров 51 тыс.
CSS Units & Sizes Tutorial for Beginners
21:25
Просмотров 36 тыс.
CSS Tips And Tricks I Wish I Knew Before
12:12
Просмотров 480 тыс.
10 CSS Pro Tips - Code this, NOT that!
9:39
Просмотров 2,2 млн
The secret to mastering CSS layouts
17:11
Просмотров 283 тыс.
CORTE DE CABELO RADICAL
00:59
Просмотров 2,2 млн