-
Notifications
You must be signed in to change notification settings - Fork 0
/
cisco.html
121 lines (109 loc) · 5.49 KB
/
cisco.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
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
<!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">
<title>Career Connect</title>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/style.css">
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-KK94CHFLLe+nY2dmCWGMq91rCGa5gtU4mk92HdvYe+M/SXH301p5ILy+dN9+nJOZ" crossorigin="anonymous">
</head>
<body>
<div class="header">
<div class="left-section">
<!--company logo-->
<img class="company" src="images/cisco.png">
</div>
<div class="middle-section">
<!--company name-->
<p class="company-name">Cisco</p>
<!--company info-->
<p class="company-info"> Cisco helps enterprises connect and monitor devices,
secure and automate operations, and compute and manage data.Cisco operates on core values of customer
focus and corporate social responsibility.
</p>
</div>
</div>
</header>
<div class="container">
<div class="row">
<!--Flexbox Start-->
<div class="col-lg-4">
<div class="student-grid">
<div class="student-details">
<div class="student-pic">
<!--Student photo-->
<img class="photo"
src="https://media.licdn.com/dms/image/C5603AQGV_KdN7Rjk6A/profile-displayphoto-shrink_800_800/0/1593377054316?e=1687392000&v=beta&t=ZbA5xUPPu0NsFv6syMCeakevrgaRSO8O1pDHm_ijX-o">
</div>
<div class="student-name">
<!--Student name-->
<p class="name">Stuti Chauhan </p>
</div>
<div class="student-branch">
<!--Student branch-->
<p class="branch">Computer Science And Engineering</p>
</div>
<div class="connect-button">
<!--Student linked in id-->
<button class="connect" onclick="location.href='https://www.linkedin.com/in/dulcetsoul/'">Connect</button>
</div>
</div>
</div>
</div>
<!--Flexbox End-->
<div class="col-lg-4">
<div class="student-grid">
<div class="student-details">
<div class="student-pic">
<img class="photo"
src="https://media.licdn.com/dms/image/C4D03AQGOqvOoeyDyCw/profile-displayphoto-shrink_400_400/0/1657724894951?e=1687392000&v=beta&t=sRe8hyspUFIxFCfflAzjAIG8QYaItzCOtYDlbTiL0gc">
</div>
<div class="student-name">
<p class="name">Ritika Thakur </p>
</div>
<div class="student-branch">
<p class="branch">Information Technology Engineering </p>
</div>
<div class="connect-button">
<button class="connect" onclick="location.href='https://www.linkedin.com/in/itsritikathakur/'">Connect</button>
</div>
</div>
</div>
</div>
<div class="col-lg-4">
<div class="student-grid">
<div class="student-details">
<div class="student-pic">
<img class="photo"
src="https://media.licdn.com/dms/image/C5603AQFVdPhYR48Q2g/profile-displayphoto-shrink_400_400/0/1596182150095?e=1687392000&v=beta&t=liey9HelawzPEZ9Otgsn-OeAm_T6JlDiJCFIJKtUD8U">
</div>
<div class="student-name">
<p class="name">Shivani Yadav </p>
</div>
<div class="student-branch">
<p class="branch">Electronics and Communication Engineering </p>
</div>
<div class="connect-button">
<button class="connect" onclick="location.href='https://www.linkedin.com/in/shivani-yadav-3986111b3/'">Connect</button>
</div>
</div>
</div>
</div>
<!--divs of roe and student grid-->
</div>
</div>
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-ENjdO4Dr2bkBIFxQpeoTz1HIcje39Wm4jDKdf19U8gI4ddQ3GYNS7NTKfAdVQSZe"
crossorigin="anonymous"></script>
<footer>
<div class="footer-content">
<h3> CareerConnect </h3>
</div>
</footer>
</body>
</html>