diff --git a/w8/questions.md b/w8/questions.md
index 3e413dd1fae491d0f5187401aed5f1a35fbec8b8..ff5a90abb7ea586b6ff86d684b81183f2dff7d53 100644
--- a/w8/questions.md
+++ b/w8/questions.md
@@ -68,10 +68,11 @@ _answer here_
 > Berkeley Sockets API (socket.h)
 
 > Standard API used in C, C++, Python, etc. for network communication.
+> 
 > Functions:
-> socket() → Creates a socket.
-> bind() → Binds a socket to an IP/port.
-> listen() → Marks a socket for incoming connections.
-> accept() → Accepts a new client connection.
-> connect() → Connects to a remote server.
-> send()/recv() → Sends & receives data.
+> - `socket()` → Creates a socket.
+> - `bind()` → Binds a socket to an IP/port.
+> - `listen()` → Marks a socket for incoming connections.
+> - `accept()` → Accepts a new client connection.
+> - `connect()` → Connects to a remote server.
+> - `send()`/`recv()` → Sends & receives data.