-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathmobile-iframe.html
125 lines (116 loc) · 3.09 KB
/
mobile-iframe.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>CKEditor 5</title>
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="stylesheet" href="iframe.css" />
<link rel="stylesheet" href="content.css" />
</head>
<body class="mobile-support-iframe">
<div class="mobile-iframe">
<div id="cke5-mobile-demo" class="ck ck-content formatted">
<h2>Waffles</h2>
<h3>Ingredients</h3>
<ul>
<li>
<label class="todo-list__label">
<input type="checkbox" disabled checked />
<span class="todo-list__label__description">2 eggs</span>
</label>
</li>
<li>
<label class="todo-list__label">
<input type="checkbox" disabled checked />
<span class="todo-list__label__description"
>2 cups all-purpose flour</span
>
</label>
</li>
<li>
<label class="todo-list__label">
<input type="checkbox" disabled checked />
<span class="todo-list__label__description">1 3/4 cups milk</span>
</label>
</li>
<li>
<label class="todo-list__label">
<input type="checkbox" disabled />
<span class="todo-list__label__description"
>1/2 cup vegetable oil</span
>
</label>
</li>
<li>
<label class="todo-list__label">
<input type="checkbox" disabled />
<span class="todo-list__label__description"
>1 tablespoon white sugar</span
>
</label>
</li>
<li>
<label class="todo-list__label">
<input type="checkbox" disabled />
<span class="todo-list__label__description"
>4 teaspoons baking powder</span
>
</label>
</li>
<li>
<label class="todo-list__label">
<input type="checkbox" disabled />
<span class="todo-list__label__description"
>1/4 teaspoon salt</span
>
</label>
</li>
<li>
<label class="todo-list__label">
<input type="checkbox" disabled />
<span class="todo-list__label__description"
>1/2 teaspoon vanilla extract</span
>
</label>
</li>
</ul>
<h3>Directions</h3>
<figure class="table">
<table>
<thead>
<tr>
<th>Prep</th>
<th>Cook</th>
<th>Ready In</th>
</tr>
</thead>
<tbody>
<tr>
<td>5 m</td>
<td>15 m</td>
<td>20 m</td>
</tr>
</tbody>
</table>
</figure>
<p>
Preheat the waffle iron. Beat eggs in a large bowl with a hand beater
until fluffy. Beat in flour, milk, vegetable oil, sugar, baking
powder, salt and vanilla, just until smooth.
</p>
<p>
Spray the preheated waffle iron with non-stick cooking spray. Pour the
mix onto the hot waffle iron. Cook until golden brown. Serve hot.
</p>
<p>
Source:
<a
href="https://www.allrecipes.com/recipe/22180/waffles-i/?fbclid=IwAR1g8NdUx6fm0aYit4Wwi2J1yQdx9WnnGqE23SVgvxr9XVRyooYMjvHq-yE"
>allrecipes</a
>
</p>
</div>
</div>
<script type="module" src="index.js"></script>
</body>
</html>