-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathucsa2.html
30 lines (29 loc) · 1.07 KB
/
ucsa2.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
<main class="px-3">
<div style="text-align: center;">
<h1>Servicenow: Certified System Administrator</h1>
<h3>( Practice Set {{setNumber}} )</h3>
</div>
<div>
<br />
</div>
<div class="container py-5 h-100" ng-repeat="itilQue in uCSA1Ques">
<div class="card">
<div class="card-body">
<div class="shadow-1-strong" style="color: rgb(255, 0, 132)">
<strong>{{ itilQue['que']}}</strong>
</div>
<ol type="A">
<li ng-repeat="itilQueOption in itilQue['opt']" ng-bind-html="itilQueOption"></li>
</ol>
<footer class="pt-4 mt-4 border-top">
<b style="color: green;"> ✓Answer:</b>
<span ng-bind-html="itilQue['ans']"></span>
<div ng-show="{{itilQue.hasOwnProperty('explaination')}}">
<br />
<p style="color: rgb(18, 103, 140);" ng-bind-html="itilQue['explaination']"></p>
</div>
</footer>
</div>
</div>
</div>
</main>