Answers for "basic css stylesheet"

15

add css to an html file

<link rel=“stylesheet” type=“text/css” href=“style.css” />
Posted by: Guest on March-14-2020
8

link css file in html

<link rel="stylesheet" href="styles.css">
Posted by: Guest on May-21-2020
3

how to style in html file

<p style="text-align: center; color: pink;">Hello World</p>
Posted by: Guest on May-14-2020
0

stylesheet create

const styles = StyleSheet.create({
  container: {
    flex: 1,
    padding: 24,
    backgroundColor: "#eaeaea"
  },
});
Posted by: Guest on August-01-2021

Browse Popular Code Answers by Language