-
Notifications
You must be signed in to change notification settings - Fork 330
/
Copy pathsudz.html
73 lines (63 loc) · 3.95 KB
/
sudz.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
<!DOCTYPE html>
<html>
<title>My Page</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://www.w3schools.com/w3css/4/w3.css">
<link href="style/style.css" type="text/css" rel="stylesheet" />
<body>
<!-- Navbar (sit on top) -->
<div class="w3-top">
<div class="w3-bar w3-white w3-wide w3-padding w3-card">
<a href="#home" class="w3-bar-item w3-button"><b>SK</b> Sudarshan Kamath</a>
<!-- Float links to the right. Hide them on small screens -->
<div class="w3-right w3-hide-small">
<a href="#about" class="w3-bar-item w3-button">About</a>
<a href="#contact" class="w3-bar-item w3-button">Contact</a>
</div>
</div>
</div>
<!-- Header -->
<header class="w3-display-container w3-content w3-wide" style="max-width:1500px;" id="home">
<img class="w3-image" src="/w3images/architect.jpg" alt="Architecture" width="1500" height="800">
<div class="w3-display-middle w3-margin-top w3-center">
<h1 class="w3-xxlarge w3-text-white">
<span class="w3-hide-small w3-text-light-grey">Architects</span></h1>
</div>
</header>
<!-- Image of Sudarshan Kamath -->>
<div align="center" style="margin-top:50px; " >
<img src="https://avatars2.githubusercontent.com/u/18459822?s=400&v=4" align="middle" style="border-radius: 50%;" />
</div>
<!-- About Section -->
<div class="w3-container w3-padding-32" id="about">
<h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">About</h3>
<p>I am Sudarshan Kamath. I studied Mechanical Engineering from Indian Institute of Technology Guwahati. I have
joined in as a Deep Learning Engineer at Strato IT Korea. Would you like to contribute to this page?
Checkout <a href="https://github.com/sudz123/Happy_Hacking">this</a> repository. My <a href="https://www.linkedin.com/in/sudarshankamath/"
target="_blank">linkedin</a>
</p>
</div>
<!-- Contact Section -->
<div class="w3-container w3-padding-32" id="contact">
<h3 class="w3-border-bottom w3-border-light-grey w3-padding-16">Contact</h3>
<p>Lets get in touch</p>
<form action="/action_page.php" target="_blank">
<input style="border-radius:5px; width:8.5cm;" class="w3-input w3-border" type="text" placeholder="Name" required name="Name">
<input style="border-radius:5px; width:8.5cm;" class="w3-input w3-section w3-border" type="text" placeholder="Email" pattern=".+@.+" oninvalid="setCustomValidity('Please include correct format of email address');" name="fname" required name="Email">
<input style="border-radius:5px; width:8.5cm;" class="w3-input w3-section w3-border" type="text" placeholder="Subject" required name="Subject">
<input style="border-radius:5px; width:13cm; height:5cm; " class="w3-input w3-section w3-border" type="text" placeholder="Comment" required name="Comment">
<button style="border-radius:5px;" class="w3-button w3-black w3-section" type="submit">
<i class="fa fa-paper-plane"></i> Send Message
</button>
<a style="border-radius:5px ;margin-left:.25cm;" href="https://www.linkedin.com/in/sudarshankamath/" target="_blank" class="w3-button w3-black w3-section">LinkedIn</a>
<a style="border-radius:5px;margin-left:.25cm" href="home.html" target="_blank" class="w3-button w3-black w3-section">Hacktober Home Page </a>
</form>
<iframe width="560" height="315" src="https://www.youtube.com/embed/xvmrJ1QaN9g" frameborder="0" allow="autoplay; encrypted-media" allowfullscreen></iframe>
</div>
<!-- End page content -->
<!-- Footer -->
<footer class="w3-center w3-black w3-padding-16"><a href="./home.html" style="text-decoration: none; margin-right: 90%;">Home</a>
</footer>
</body>
</html>