-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtry.html
More file actions
128 lines (101 loc) · 3.41 KB
/
try.html
File metadata and controls
128 lines (101 loc) · 3.41 KB
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
126
<!doctype html>
<title>module1</title>
<style>
* {
box-sizing: border-box;
}
body {
display: flex;
min-height: 50vh;
width: 1000px;
flex-direction: row;
margin: 0;
overflow:hidden;
background-image: linear-gradient(to right, #E6E6FA , white); /* Standard syntax (must be last) */
}
.col-1 {
background: #E6E6FA ;
flex: 1;
}
.col-2 {
display: flex;
flex-direction: column;
flex: 5;
background: #transparent;
}
.content {
display: flex;
flex-direction: row;
}
.content > article {
flex: 4;
min-height: 60vh;
}
header, footer {
background: #1E90FF;
height: 1vh;
}
header, footer, article, nav {
padding: 1em;
}
iframe {
margin-left: -225px;
margin-top: -130px;
}
p {
width: 250px;
font-stretch: expanded;
}
.context {
width: 100%;
position: absolute;
top:50vh;
}
.button {
background-color: #008CBA; /* not_Green */
border: none;
color: white;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
margin: 4px 2px;
cursor: pointer;
all: unset;
}
</style>
<body>
<nav class="col-1">
<div style="height:520px;width:300px;overflow:auto;margin: 19% auto;background-color:white;color:black;scrollbar-base-color:gold;font-family:sans-serif;padding:10px;">
<h2>Instructions</h2>
<p>You probably heard that forum are great for discussions. Let’s start with the basic forum functions</p>
<p><u>How to create a forum?</u></p>
<p><strong>Step 1:</strong>
Decide whether you want to create a public or a community forum.</p>
<p><strong>Step 2:</strong>
Once you are on the forum app, click “Start a Forum”</p>
<p><strong>Step 3:</strong>
Choose a title, and add a description if needed.</p>
<p><strong>Step 4:</strong>
There will now be an option to start a topic. You can create as many topics as you want.</p>
<p><strong>Step 5:</strong>
Pick you tags. We recommend a minimum of 2, but the more the merrier - as this would increase the ease of finding relevant information for your colleagues and give your forum more exposure.</p>
<p><strong>Step 6:</strong>
Use the editor section to create your forum topic. The “HTML source” tab will provide additional functions. Some ideas available <a href="https://connections.mykn.community/wikis/home?lang=en-us#!/wiki/Wde1655caa817_4950_b38d_0337f30682fb/page/HTML%20Code%20Overview%20(snippets)">here</a>.</p>
<p><strong>Step 7:</strong> Click “Save” and your topic is created.</p>
<br><div align="center">
<form>
<input style="width: 180px; padding: 10px; cursor: pointer; background: #00BFFF; color: #white; font-size: 100%;" type="button" value="Next Module" onclick="window.location.href='sync0n.github.io/quiz.html'" />
</form></div>
</div></div>
</nav>
<div class="col-2">
<main class="content">
<article><div class="column middle">
<div style="border: none; overflow: hidden; margin: 6% auto; max-width: 960px; margin-left: 10px">
<iframe sandbox="allow-same-origin allow-scripts allow-popups allow-forms" src="https://connections.mykn.community/forums/html/public?lang=en_us"scrolling="no" style="border: 0px none; margin-left: -290px; height: 670px; margin-top: -125px; width: 1300px; -webkit-transform:scale(0.9);-moz-transform-scale(0.9);" ></iframe>
</</article></div></div>
</main>
</div>
</body>