update
This commit is contained in:
parent
bee5fef900
commit
4b92f289c9
5 changed files with 38 additions and 8 deletions
|
|
@ -1,3 +1,19 @@
|
|||
snippet html5 "HTML% boilerplate."
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<meta http-equiv="X-UA-Compatible" content="ie=edge" />${2:
|
||||
<link rel="stylesheet" href="${3:./assets/css/style.css}">}
|
||||
<title>$1</title>
|
||||
</head>
|
||||
<body>$0 ${4:
|
||||
<script src="${5:./assets/js/index.js}"></script>}
|
||||
</body>
|
||||
</html>
|
||||
endsnippet
|
||||
|
||||
snippet option "<option value=..."
|
||||
<option value="$1">${2:$1}</option>$0
|
||||
endsnippet
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue