-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpicpage.html
42 lines (36 loc) · 1.09 KB
/
picpage.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
<!DOCTYPE html>
<html>
<title>W3.CSS Template</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="http://www.w3schools.com/lib/w3.css">
<body class="w3-content" style="max-width:1500px">
<!-- First Grid: Logo & About -->
<div class="w3-row">
<div class="w3-half w3-red w3-container w3-center" style="height:94px " >
<div class=" w3-center style" style = "height:300px ">
<h1 class = "w3-center">What are your best qualities?</h1>
</div>
<div class = "w3-row w3-margin">
<img src={{.m.pic}}>
</div>
<div class="w3-padding-64">
</div>
</div>
<div class="w3-half w3-red w3-container" style="height:94px">
<div class="w3-padding-64 w3-center">
<div class=" w3-padding-xxlarge" >
<script type="text/javascript" >
for (i=0; i<=5; i++)
{
document.write("<div class='w3-panel w3-blue w3-round-xlarge w3-padding-16' >" )
document.write("<p style='color: white;'> {{.m.tag1 }} </p>")
document.write("</div>")
}
</script>
</div>
</div>
</div>
</div>
</body>
</html>