-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmobile.html
51 lines (47 loc) · 1.24 KB
/
mobile.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
<!DOCTYPE html>
<html>
<title>W3.CSS</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3mobile.css">
<link rel="stylesheet" href="https://www.w3schools.com/lib/w3-theme-red.css">
<body>
<header class="w3-container w3-card w3-theme">
<h1>Movies</h1>
</header>
<div class="w3-container">
<hr>
<div class="w3-cell-row">
<div class="w3-cell" style="width:30%">
<img src="img_avatar.jpg" style="width:100%">
</div>
<div class="w3-cell w3-container">
<h3>Frozen</h3>
<p>The response to the animations was ridiculous.</p>
</div>
</div>
<hr>
<div class="w3-cell-row">
<div class="w3-cell" style="width:30%">
<img src="img_avatar.jpg" style="width:100%">
</div>
<div class="w3-cell w3-container">
<h3>The Fault in Our Stars</h3>
<p>Touching, gripping and genuinely well made.</p>
</div>
</div>
<hr>
<div class="w3-cell-row">
<div class="w3-cell" style="width:30%">
<img src="img_avatar.jpg" style="width:100%">
</div>
<div class="w3-cell w3-container">
<h3>The Avengers</h3>
<p>A huge success for Marvel and Disney.</p>
</div>
</div>
<hr>
</div>
<footer class="w3-container w3-theme">
<h3>Footer</h3>
</footer>
</body>