How To link HTML into CSS with SmartPhone



If you don't have computer and if you want to do coding, you need to do coding in your smart phone but here is the main question "How to link HTML into CSS with your phone". So, in this blog i'm going to tell you how to do it.

So, first you to upload css file into Google drive.


then you need to click on share. Now, you need to make css file public.




then you need to copy the link.

Now, You need to open this website: drive.recmail.net


then you need to peast the link. Now, you need to click on "Generate the link" then copy it.




Now, you need to come to html file, you need to type this: <link rel="stylesheet" href="styles.css">


Examples:

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>

<link rel="stylesheet" href="styles.css">

</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>


then you need to type this: 
<link rel="stylesheet" href="here goes the link">


Example:

<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>

<link rel="stylesheet" href="styles.css">

<link rel="stylesheet" href="here goes the link">

</head>
<body>

<h1>This is a Heading</h1>
<p>This is a paragraph.</p>

</body>
</html>


and you need to peast that link in href="" that you have coped from drive.recmail.net

Now, it's done.

Post a Comment

0 Comments