xxxxxxxxxx
<!-- External -->
<link rel="stylesheet" href="css/file.css" />
<!-- Internal -->
<style>
p {
color: red;
}
</style>
<!-- Inline -->
<p style="color: blue;">This Is Our Paragraph</p>
xxxxxxxxxx
<!-- Write Path -->
<link rel="stylesheet" href="assets/css/master.css" />
xxxxxxxxxx
<!-- Write Path -->
<link rel="stylesheet" href="source/css/main.css" />
xxxxxxxxxx
<input type="file" onchange="previewFile()"><br>
<img src="" height="200" alt="Image preview..." style="diaplay:none">
xxxxxxxxxx
<!-- external syle -->
<link rel="stylesheet" href="css/file.css" />
<!-- internal style -->
<style>
p {
color: red;
}
</style>
<!-- inline style -->
<p style="color: blue;">This Is Our Paragraph</p>
xxxxxxxxxx
<!-- Write Path -->
<link rel="stylesheet" href="../assets/css/master.css" />
xxxxxxxxxx
<style amp-custom>
h1 {
margin: 1rem;
}
body {
background-color: blue;
}
</style>
xxxxxxxxxx
<style>
.container {
display: flex;
flex-direction: column;
align-items: center;
background-color: lightgray;
height: 100px;
}
.box {
width: 50px;
height: 50px;
background-color: aquamarine;
margin: 5px;
}
</style>