@@ -55,15 +55,15 @@ There are 4 ways to get started with pico.css:
55
55
[ Download Pico] ( https://github.com/picocss/pico/archive/refs/heads/main.zip ) and link ` /css/pico.min.css ` in the ` <head> ` of your website.
56
56
57
57
``` html
58
- <link rel =" stylesheet" href =" css/pico.min.css" / >
58
+ <link rel =" stylesheet" href =" css/pico.min.css" >
59
59
```
60
60
61
61
### Usage from CDN
62
62
63
63
Alternatively, you can use [ jsDelivr CDN] ( https://www.jsdelivr.com/package/npm/@picocss/pico ) to link pico.css.
64
64
65
65
``` html
66
- <link rel =" stylesheet" href =" https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css" / >
66
+ <link rel =" stylesheet" href =" https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css" >
67
67
```
68
68
69
69
### Install with NPM
@@ -98,7 +98,7 @@ composer require picocss/pico
98
98
<head >
99
99
<meta charset =" utf-8" >
100
100
<meta name =" viewport" content =" width=device-width, initial-scale=1" >
101
- <meta name =" color-scheme" content =" light dark" / >
101
+ <meta name =" color-scheme" content =" light dark" >
102
102
<link rel =" stylesheet" href =" css/pico.min.css" >
103
103
<title >Hello world!</title >
104
104
</head >
@@ -131,7 +131,7 @@ Or use the `.fluid.classless` version if you need a fluid container:
131
131
<link
132
132
rel =" stylesheet"
133
133
href =" https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.fluid.classless.min.css"
134
- / >
134
+ >
135
135
```
136
136
137
137
Then just write pure HTML, and it should look great:
@@ -140,13 +140,13 @@ Then just write pure HTML, and it should look great:
140
140
<!doctype html>
141
141
<html lang =" en" >
142
142
<head >
143
- <meta charset =" utf-8" / >
144
- <meta name =" viewport" content =" width=device-width, initial-scale=1" / >
145
- <meta name =" color-scheme" content =" light dark" / >
143
+ <meta charset =" utf-8" >
144
+ <meta name =" viewport" content =" width=device-width, initial-scale=1" >
145
+ <meta name =" color-scheme" content =" light dark" >
146
146
<link
147
147
rel =" stylesheet"
148
148
href =" https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.classless.min.css"
149
- / >
149
+ >
150
150
<title >Hello, world!</title >
151
151
</head >
152
152
<body >
0 commit comments