## Boilerplate
-Inside `src/layouts/default.html`, you can see the boilerplate needed to make an HTML work, with comments explaining what does what.
+Inside `index.html`, you can see the boilerplate needed to make an HTML work, with comments explaining what does what.
```html
<!-- Emails use the XHTML Strict doctype -->
<head>
<!-- The character set should be utf-8 -->
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <!-- Enables media queries -->
<meta name="viewport" content="width=device-width"/>
<!-- Link to the email's CSS, which will be inlined into the email -->
- <link rel="stylesheet" href="assets/css/foundation.css">
+ <link rel="stylesheet" href="css/foundation.css">
+ <style>
+ <!-- Your CSS to inline should be added here -->
+ </style>
</head>
<body>
<table class="body" data-made-with-foundation>
<tr>
<!-- The class, align, and <center> tag center the container -->
- <td class="center" align="center" valign="top">
+ <td class="float-center" align="center" valign="top">
<center>
<!-- The content of your email goes here. -->
</center>