-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmentor-course-control-live.html
75 lines (74 loc) · 2.82 KB
/
mentor-course-control-live.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="shortcut icon" type="image-icon" href="images/title-icon.svg" />
<title>To Be Hero</title>
<link rel="stylesheet" href="css/style.css" />
<script src="https://kit.fontawesome.com/5638fbe671.js"></script>
</head>
<body>
<!-- start header -->
<header class="flex-row just-cont-cntr">
<div class="container">
<nav>
<div class="logo ">
<a href=""> <h1>TO BE</h1></a>
</div>
</nav>
</div>
</header>
<!-- end header -->
<!-- start Mentor course control -->
<section class="hr-section-22">
<h4>Lorem ipsum dolor sit amet, consetetur</h4>
<div class="container">
<div class="name-plate">
<div class="guardian-name-plate">
<div class="plate-title"><p>Guardian</p></div>
<div class="inner-name-plate"><p>Islam gohar</p></div>
<div class="guardian-plate-phone-number">
<a href=""><p>Click to view phone number</p></a>
</div>
</div>
<div class="hero-name-plate">
<div class="plate-title"><p>Hero</p></div>
<div class="inner-name-plate"><p>Youssef Gohar</p></div>
</div>
</div>
<div class="row">
<div class="col-xl-9 col-lg-8 col-12">
<div class="mentor-control-live">
<div class="load-live">
<img src="images/icon-loading.svg" alt="">
</div>
</div>
</div>
<div class="col-xl-3 col-lg-4 col-12">
<div class="notes-container">
<div class="notes-form">
<form action="">
<div class="notes-title">
<label for="Title">Notes</label>
<textarea name="Title" id="Title" cols="5" rows="11" placeholder="write your notes here …..."></textarea>
</div>
<div class="button-send-notes">
<input type="submit" value="send notes" class="notes-button">
</div>
</form>
</div>
<div class="start-cancel-session">
<button class="btn btn-purple-400 btn-start">Start Live session <span></span></button>
<button class="btn btn-cancel">cancel appointement</button>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- end Mentor course control -->
<script src="js/main.js"></script>
</body>
</html>