diff options
| author | Vicente Olivert Riera <Vincent.Riera@imgtec.com> | 2015-09-07 14:08:34 +0100 |
|---|---|---|
| committer | Peter Korsgaard <peter@korsgaard.com> | 2015-09-07 23:53:19 +0200 |
| commit | 476b674824ebc22dd63664e8810989f6fe8b295d (patch) | |
| tree | aaeaae98bd0277a8f8767a5e8ab5877c1775f0c4 | |
| parent | 76bcbae365b82304b7ad0bfd007a5e0a97ea4bde (diff) | |
docs/website: add a space between attributes
Error highlighted by the W3 HTML validator:
Error: No space between attributes.
At line 71, column 64
e="width:100%;"href="/download
Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
| -rw-r--r-- | docs/website/index.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/website/index.html b/docs/website/index.html index 36075bc27..c6882fb48 100644 --- a/docs/website/index.html +++ b/docs/website/index.html @@ -19,7 +19,7 @@ <a class="btn btn-primary btn-lg" style="width:100%;" href="/about.html"><span class="glyphicon glyphicon-info-sign"></span> Learn more »</a> </div> <div class="col-sm-6" style="margin-top:1em; padding-left:0px;"> - <a class="btn btn-primary btn-lg" style="width:100%;"href="/download.html"><span class="glyphicon glyphicon-cloud-download"></span> Download »</a> + <a class="btn btn-primary btn-lg" style="width:100%;" href="/download.html"><span class="glyphicon glyphicon-cloud-download"></span> Download »</a> </div> </div> </div> |
