Korvin
5
Q:

css without separate file

 <link rel="stylesheet" type="text/css" href="mystyle.css">
20
<link rel="stylesheet" type="text/css" href="mystyle.css">
9
<html>
<head>
<link rel="stylesheet" type="text/css" href="Name.css">
</head>
<body>
.
.
.
</body>
0

  <!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="mystyle.css">
</head>
<body>

<h1>This is a heading</h1>

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

</body>
</html> 
0
just add any style inside the first <p> or other element tag using style=" ;" 
<p style="font-size: xx-large;">test</p>
0

New to Communities?

Join the community