Python - How to apply patch to Python and Install Python via Pyenv
Introduction In this post, we will see how we can apply a patch to Python and…
September 09, 2018
If you are using Bootstrap, the default font that comes with the package is pretty simple and is not classy.
Google font is a free service provided by Google. The service provides a wide veriety of collection of fonts free of cost.
To use google fonts on your web design is very simple. Goto Google Fonts site. There are plenty of fonts with their sample text. Browse through them, and select the one you want by clicking a Plus icon on them.
This will show a link to use, something like:
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
and a css code to put, something like:
font-family: 'Open Sans', sans-serif;
Goto your html code, paste the link in betwene your head section.
<html>
<head>
..
<link href="https://fonts.googleapis.com/css?family=Roboto" rel="stylesheet">
..
..
</head>
</html>
And, in your website css file,
body {
font-family: 'Open Sans', sans-serif;
min-height: 75rem;
padding-top: 4.5rem;
}
h1,h2,h3,h4,h5,h6 {
font-family: 'Open Sans', sans-serif;
}
p {
font-size: 18px;
font-family: 'Open Sans', sans-serif;
}
That is it.
You will see changed font in effect in your website.
Thanks for reading.
Introduction In this post, we will see how we can apply a patch to Python and…
Its good to write unit tests cases, and this part is mostly forgotten by…
This will take backup of your passed database name, to the passed folder. It…
You have drupal 7 image from docker hub, and want to connect tomongo db via php…
Introduction I have my main website, which I run on Lets say: . Now, there is my…
Introduction We will list few interesting automation techniques with powershell…
Introduction In this post we will see following: How to schedule a job on cron…
Introduction There are some cases, where I need another git repository while…
Introduction In this post, we will see how to fetch multiple credentials and…
Introduction I have an automation script, that I want to run on different…
Introduction I had to write a CICD system for one of our project. I had to…
Introduction Java log4j has many ways to initialize and append the desired…