-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
87 lines (87 loc) · 2.49 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<title>First webpage</title>
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link href="https://fonts.googleapis.com/css?family=Noto+Sans|Roboto+Mono&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<div class="intro">
<img class="profile-picture" src="https://logos.textgiraffe.com/logos/logo-name/Akhil-designstyle-smoothie-m.png">
<h1 id="hello">Akhil Soni</h1>
<h3>Welcome At MyWorld</h3>
<p class="quote">{{ Pause and ponder }}</p>
</div>
<hr/>
<div class="about-grid">
<div class="i-am">
<h3>I am</h3>
<ul class="about-list">
<li>An engineer</li>
<li>A reader</li>
<li></li>
</ul>
</div>
<div class="i-like">
<h3>I like to</h3>
<ul class="about-list">
<li>Meet new people</li>
<li>Play guitar</li>
<li>Eat Icecream</li>
</ul>
</div>
</div>
<hr/>
<div>
<h3 class="projects-heading">My Projects</h3>
<div class="projects-grid">
<div class="project-image-wrapper" id="proj">
<h4>Project 1</h4>
<img class="project-image" src="thought1.jpg"/>
<img class="project-image" src="thought2.jpg">
<img class="project-image" src="thought3.jpg">
<img class="project-image" src="thought4.jpg">
</div>
<div class="project-image-wrapper">
<h4>Project 2</h4>
<img class="project-image" src="thought2.jpg"/>
</div>
<div class="project-image-wrapper">
<h4>Project 3</h4>
<img class="project-image" src="thought3.jpg"/>
</div>
<div class="project-image-wrapper">
<h4>Project 4</h4>
<img class="project-image" src="thought4.jpg"/>
</div>
</div>
</div>
<div class="links-and-contact">
<div class="links">
<h3 >Links</h3>
<ul class="links-list">
<li>
<a href="https://github.com/akhil-maker">Github</a>
</li>
<li>
<a href="https://linkedin.com/in/akhilsoni">LinkedIn</a>
</li>
</ul>
</div>
<form class="contact-list" action="#">
<h3>Email</h3>
<input class="cont" type="email" id="email" placeholder="Enter your email">
<label class="error">Enter correct email-address</label>
<h3>Message</h3>
<textarea class="cont" id="message" placeholder="Your message"></textarea>
<div class="submit-button-wrapper">
<input class="submit" type="submit" id="submit-button" valid="Send Message"/>
</div>
</form>
</div>
</div>
<script src="script.js"></script>
</body>
</html>