21
loading...
This website collects cookies to deliver better user experience
<div className="App">
<h1>Images react</h1>
<img src={"https://images.unsplash.com/photo-1637984135921-301a7d39e3b7?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1315&q=80"} />
<div>
import RedRose from './red-rose.jpg'
<img src={RedRose} />
h1 {
background: url('./red-rose.jpg')
height: 900px;
}
<img src="%PUBLIC_URL%/red-rose.jgp" />
function App(){
return (
<div classname="App">
<h1>Images React</h1>
<img src={"/red-rose10.jpg"} />
</div>
)
}
<img src={process.env.PUBLIC_URL + "/red-rose10.jpg"} />
function App(){
const index = 10;
return (
<div classname="App">
<h1>Images React</h1>
<img src={process.env.PUBLIC_URL + `/red-rose${index}.jpg`} />
</div>
)
}
import Piano from './piano.svg'
function App(){
return (
<div classname="App">
<h1>Images React</h1>
<img src={Piano} />
</div>
)
}
import {ReactComponent as PianoComponent} from './piano.svg'
function App(){
return (
<div classname="App">
<h1>Images React</h1>
<PianoComponent />
</div>
)
}